Combo Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to create a combo box with the same functionality as the VB combo box? The drop down list works fine, but I would like to have a combo box that shows more than one column when the user clicks on the list and only shows the first column when the list is not selected. Just like a combo box in a windows VB application or an MS Access form

Thanks
 
Well there is no such thing as web combobox control because HTML simply does
not support it.
So therefore you have to fake it with some fancy server & client code. Here
is a link for a control that does
just that:
http://www.metabuilders.com/Tools/ComboBox.aspx

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com



v said:
Is it possible to create a combo box with the same functionality as the VB
combo box? The drop down list works fine, but I would like to have a combo
box that shows more than one column when the user clicks on the list and
only shows the first column when the list is not selected. Just like a
combo box in a windows VB application or an MS Access form.
 
Back
Top