To enable buttons

sofie

Registered User.
Local time
Today, 22:09
Joined
Jan 17, 2002
Messages
12
I thougt this was the code, to enable a button, when there is no previous or next button. But it doesn't work.

Who can help me?

Private Sub Form_current()
If IsNull(Me.Code) Then
cmdPrevious.SetFocus
cmdNext.Enabled = False
Else
cmdNext.Enabled = True
End If
End Sub
 
Why not make the button invisible if your answer is true. Doing it this way seems easier. The code below checks if a record has been updated (flag control set to true) and then prevents further updates by making the update button (called readonly) invisible.
If flag Then
Me.Form.AllowEdits = False
Me![readonly].Visible = True
Else
Me.Form.AllowEdits = True
Me![readonly].Visible = False
End If
 

Users who are viewing this thread

Back
Top Bottom