This is a very basic question - I have a dropdown list and can select items from it OK. How can I let the user un-select? In other words what do I need to do to balnk out that field once it has been selected?
It must be simple but I don't know how.
Printable View
This is a very basic question - I have a dropdown list and can select items from it OK. How can I let the user un-select? In other words what do I need to do to balnk out that field once it has been selected?
It must be simple but I don't know how.
DropDownListControl.ListIndex=-1
(or if it's a database-linked dropdown you need to do
DropDownListcontrol.BoundText=""
)
this will clear the dropdown list text.
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]
[This message has been edited by Buzby (edited 02-07-2000).]