Showing a control overtop of other controls

dsmaj

Registered User.
Local time
Yesterday, 22:14
Joined
Apr 28, 2004
Messages
96
I'm trying to conditionally display a multi-select listbox ontop of a search results listbox depending on the value of a toggle button. The listbox that the toggle button spawns is much smaller and only covers a portion of the searchresults listbox. The listbox displays fine, however, if I try to select items within the toggle button's listbox, my 'clicks' are going right through it to the search results listbox. Is it possible to do what I'm trying to do here? Any ideas?

Thanks in advance,
Sam
 
yes, make any control that you do not want "active", not visible

if something then
me.[controlname].visible=false
else
me.[controlname].visible=true
end if
 
Kodo said:
yes, make any control that you do not want "active", not visible

if something then
me.[controlname].visible=false
else
me.[controlname].visible=true
end if

Hey Kodo, I was thinking that as well. However, as the smaller listbox only obscures SOME of the larger search results listbox, I was hoping I wouldn't have to make the whole thing invisible each time the user presses the toggle button for the smaller listbox.

Thanks for the reply,
Sam
 

Users who are viewing this thread

Back
Top Bottom