P
Phil H.
Is there a way to toggle the display of a ListBox?
Phil H. said:Is there a way to toggle the display of a ListBox?
Harald Staff said:Hi Phil
Toggle button code (rightclick; "view code", or similar):
Private Sub ToggleButton1_Click()
Me.ListBox1.Visible = Me.ToggleButton1.Value
'or
'Me.ListBox1.Visible = Not (Me.ToggleButton1.Value)
End Sub
Best wishes Harald