dale
|
| Posted: 08/01/2003, 8:45 AM |
|
I am trying to hide a listbox if the value= "--" I've tried to find some information here but it looks like almost everything is for codecharge not codecharge studio. Anyone have any idea?
Thank you,
Dale
|
|
|
 |
Blinky Bill
|
| Posted: 08/03/2003, 6:02 AM |
|
Dale,
the listbox control does have a .visible property.
on before_show event of the control do the following:
If EventCaller.Value = "--" then
EventCaller.Visible = False
Else
EventCaller.Visble = True
End If
the else isn't really require but there for completeness.
|
|
|
 |
|