dropdown list box

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

Guest

Is there such a thing as a dropdown list (Text) box. What I would like to do
is display data from a table (Clients) for selection into a text box.
 
Norm,
i didnt understand your qustion ? what are you planning to do ? did you try
to ListBox ?? does this work with you ?

Regards,
Husam Al-a'araj
 
I have a SQL Database with several tables. One of the tables is called
'owner'. I would like to tie this table to a listbox so I can display the
owners name and select it.
I know that it can be done with a datagridview, but I would like to use a
textbox or listbox if possible.
 
nbohana said:
I have a SQL Database with several tables. One of the tables is
called
'owner'. I would like to tie this table to a listbox so I can
display the
owners name and select it.

Use ComboBox with DropDownStyle = DropDownList.

Eq.
 
Back
Top