Toggle Button Display?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, Is there a way for the toggle button to display "yes" when it is pressed?
Thanks very much.
 
Hi, Is there a way for the toggle button to display "yes" when it is pressed?
Thanks very much.


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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Toggle Button 5
toggle button 7
toggle button nightmare 3
Toggle Button Not Displayed Right 1
Toggle Button for Visible Command 1
Toggle button 1
Makeing a list box null 2
From datasheet to continuous 1

Back
Top