Dana,

We need to go back and clean up some of the HTML Coding (I know picky.. picky...) [Big Grin]

Current HTML Source..
code:
<title>A Simple ComboBox</title>
<font size="5" FACE="Courier" color="#0000ff">Select from the list below...<br></font>
<HTML><HEAD><TITLE>A Simple ComboBox</TITLE></HEAD>
<BODY><BR>Your Selection<BR><form name=frm>
<OBJECT ID="ComboBox" WIDTH=200 HEIGHT=26 CLASSID="CLSID:8BD21D30-EC42-11CE-9E0D-00AA006002F3">
</OBJECT> </form>
</BODY></HTML>

The html should be cleaned up to be:
code:
<HTML><HEAD><TITLE>A Simple ComboBox</TITLE></HEAD>
<BODY><font size="5" FACE="Courier" color="#0000ff">Select from the list below...<br></font>
<BR>Your Selection<BR><form name=frm>
<OBJECT ID="ComboBox" WIDTH=200 HEIGHT=26 CLASSID="CLSID:8BD21D30-EC42-11CE-9E0D-00AA006002F3">
</OBJECT> </form>
</BODY></HTML>

So, if we look at a form properties in HTML..
code:
<form method="POST" NAME="Order" action="odrcnfrm.asp">
<input NAME="Order_FullName" SIZE="35">
<input TYPE="submit" VALUE="Submit Order"> <input TYPE="reset" VALUE="Reset Order Form">
</form>

I know this is a different methodology used too..

So, this should help get this rolling..

Kent

[ 27 June 2002, 18:08: Message edited by: kdyer ]
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's