View Full Version : Form: Allow Edit=true


michelle
03-24-2000, 12:25 AM
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.

Neo90815
08-29-2000, 02:19 PM
Kinda late..

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

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

Have Fun! http://www.access-programmers.co.uk/ubb/smile.gif