Hi all.. I want to use a toggle button to cycle 3 stages...
1. Yes 2. No 3. R
How do i do this, programmatically or by the property sheet related to the toggle button.. The control to be “toggled” is a text field..
I use this to “toggle” between two values..but the third?
If Me![TextA] = "No" Then
[TextA] = "Yes"
Else
[TextA] = "No"
End If
Thanks!
1. Yes 2. No 3. R
How do i do this, programmatically or by the property sheet related to the toggle button.. The control to be “toggled” is a text field..
I use this to “toggle” between two values..but the third?
If Me![TextA] = "No" Then
[TextA] = "Yes"
Else
[TextA] = "No"
End If
Thanks!