i have a continuous form that i want a toggle button to display "on" or "off." everything i try changes every single caption on the continuous form--rather than the single row. here's what i have so far:
it works, but every time the mouse moves over the button, the button flickers. this is not as clean as i would like it to be but if nothing else comes up, i suppose i can live with it.
Code:
Private Sub Detail_Paint() If OnOff.Value = True Then OnOff.Caption = "On" Else: OnOff.Caption = "Off" End If End Sub
Comment