Makeing a list box null

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

Guest

I have an option group that contains 26 toggle buttons. Each is assigned an
alpha value. When I click a toggle button, the names in my database that
begin with the letter that is assigned to that toggle button are displayed in
a list box. When I click on a name in my list box, that name is selected.
If I click another toggle button (a different one) the name I previously
clicked on is still selected, even if I have a different list displayed.

My question is, how can I deselect a previously selected value or make my
list box null when I click another toggle button in my option group? I'd
appreciate any feedback. Thanks...
 
I have an option group that contains 26 toggle buttons. Each is assigned an
alpha value. When I click a toggle button, the names in my database that
begin with the letter that is assigned to that toggle button are displayed in
a list box. When I click on a name in my list box, that name is selected.
If I click another toggle button (a different one) the name I previously
clicked on is still selected, even if I have a different list displayed.

My question is, how can I deselect a previously selected value or make my
list box null when I click another toggle button in my option group? I'd
appreciate any feedback. Thanks...

Did you try:
ListBoxName = Null
 
I'm apparently an idiot. Thank you . . . what a simple answer that I should
have seen, myself. Thanks...
 
Back
Top