Hi Guys,
I tried some code examples found on here but owing to my level of expertise unable to figure it out.
I have Toggle28 which has code
And a memo field called Notes
On click on the toggle I would like hide/unhide this field.
Could you assist please,
Cheers,
Rob
I tried some code examples found on here but owing to my level of expertise unable to figure it out.
I have Toggle28 which has code
Code:
Private Sub Toggle28_Click()
If Me.Toggle28 = -1 Then 'if pressed in
Me.Toggle28.Caption = "Hide Notes"
Else
Me.Toggle28.Caption = "View Notes"
End If
End Sub
And a memo field called Notes
On click on the toggle I would like hide/unhide this field.
Could you assist please,
Cheers,
Rob