making a form read only

SAMZIE

Registered User.
Local time
Today, 03:26
Joined
Nov 18, 2005
Messages
21
I have a form which I need to make read only. On Access 98 it used to ask how I wanted to open and view the form in edit mode or view. I cant find this option in 2003 anyone got a quick answer?

Many Thanks
 
Last edited:
In the code to open the form you can use

Forms!YourFormName.AllowEdits = False
Forms!YourFormName.AllowAdditions = False
 
Thanks but i cant use code. im pretty sure there was a very easy way!
 
Thanks but i cant use code. im pretty sure there was a very easy way!
Why can't you use code? Is there a requirement that no code be used, or you just don't know how to use it?

The EASIEST way is just to go into the form and set those two properties to NO in the form's properties window, but then it is read only all of the time.
 
this can be done in forms design as well. no code required.
 

Users who are viewing this thread

Back
Top Bottom