Thread
:
Toggle Button
View Single Post
#
2
Posted to microsoft.public.excel.programming
Incidental
external usenet poster
Posts: 226
Toggle Button
Hi there
you could use something like this
Private Sub ToggleButton1_Click()
If ToggleButton1.Value = True Then
ToggleButton1.Caption = "On"
Else
ToggleButton1.Caption = "Off"
End If
End Sub
Hope this helps
Reply With Quote
Incidental
View Public Profile
Find all posts by Incidental