Form: Allow Edit=true

michelle

New member
Local time
Today, 11:18
Joined
Mar 13, 2000
Messages
5
Dear Access users,

I have made a form (Allow Edit = False)
Also is made a frame with option buttons (for setting filters).

Is it possible to make "Allow Edit = True" in the moment the mouse is moving over the Frame?

Thanks for reading,

Michelle.
 
Kinda late..

***********************
Private Sub YourButtonName_Click()
Me.AllowEdits = True 'Allow users to edit
[FieldName].SetFocus 'move cusor to

End Sub
*************************

Have Fun!
smile.gif
 

Users who are viewing this thread

Back
Top Bottom