G Guest May 1, 2007 #1 Hi, Is there a way for the toggle button to display "yes" when it is pressed? Thanks very much.
F fredg May 1, 2007 #2 Hi, Is there a way for the toggle button to display "yes" when it is pressed? Thanks very much. Click to expand... Set the Toggle button's Caption to No. Code the Toggle button's Click event: If Me.ToggleName.Caption = "No" Then Me.ToggleName.Caption = "Yes" Else Me.ToggleName.Caption = "No" End If
Hi, Is there a way for the toggle button to display "yes" when it is pressed? Thanks very much. Click to expand... Set the Toggle button's Caption to No. Code the Toggle button's Click event: If Me.ToggleName.Caption = "No" Then Me.ToggleName.Caption = "Yes" Else Me.ToggleName.Caption = "No" End If