Hi, I'm new here.
I have built a multiform. It has a field called "account" which I want a toggle button to lock.
To achieve this I inserted a button in the form header.
I have chosen Events tab -->ON Click -->Event Procedure
In this VB dialog I wrote:
Private Sub Command14_Click()
Me.account.Enabled = False
End Sub
Why does this not work?
I have built a multiform. It has a field called "account" which I want a toggle button to lock.
To achieve this I inserted a button in the form header.
I have chosen Events tab -->ON Click -->Event Procedure
In this VB dialog I wrote:
Private Sub Command14_Click()
Me.account.Enabled = False
End Sub
Why does this not work?