list box

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

Guest

I have a list box that is based off a value list. I would like there to be an
option where none of the values are selected. Right now if you click on one
it is turned on and I have no way of changing it back to a null value.
 
I have a list box that is based off a value list. I would like there to be an
option where none of the values are selected. Right now if you click on one
it is turned on and I have no way of changing it back to a null value.

If all you want to do is unselect a selected value, and afre willing
to double-click the control, code the list box double-click event to:

Me![ListBoxName] = Null

If you do wish to show a Null value, then set the Value List property
to:

"","ValueA","ValueB","ValueC", etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top