Yes, this definately helps. Thanks so much!
-----Original Message-----
From: Marc Seyon [mailto:seyon@c...]
Sent: Thursday, March 22, 2001 7:21 PM
To: HTML Code Clinic
Subject: [html_code_clinic] Re: Buttons on Page
Hi Rita,
You can do this using either a <textarea> or <select> for each listbox, and
tables to create the alignment.
<form>
<table>
<tr>
<td valign="top">
<select size="10">
<option value="1">some value
.....
</select>
</td>
<td valign="middle" align="center">
<input type="button" value="ADD">
<p>
<input type="button" value="REMOVE">
</td>
<td valign="top">
<select size="10">
<option value="1">some value
.....
</select>
</td>
</tr>
</table>
</form>
hth
-marc
At 3/22/2001 11:17 PM, you wrote:
>Hi.
>
>I want a list box on the left, another one on the right and 2 input
>buttons in the middle of the 2 list boxes ( one "ADD>>" and the
>other "REMOVE<<").