F
FA
I want to disabled a command button after being clicked on a form. In
my
Form Current Event Procedure i have something like this but its
disabling the command button before even clicking it.
If Me.CurrentRecord Then
Command566.Enabled = False
Else
Command566.Enabled = True
End If
I have a single form and each form shows one record of each field in
the table. I want the user to open that form, click the command button
and after clicking the command button, i want it to be disabled.
If the user come back to the same record, or open the form with the
same record the command button should be disabled. Meaning i want to
permenantly disable the command button after being clicked once for
each record.
How can i do that??
Your help would be greatly appreciated
Moe
my
Form Current Event Procedure i have something like this but its
disabling the command button before even clicking it.
If Me.CurrentRecord Then
Command566.Enabled = False
Else
Command566.Enabled = True
End If
I have a single form and each form shows one record of each field in
the table. I want the user to open that form, click the command button
and after clicking the command button, i want it to be disabled.
If the user come back to the same record, or open the form with the
same record the command button should be disabled. Meaning i want to
permenantly disable the command button after being clicked once for
each record.
How can i do that??
Your help would be greatly appreciated
Moe