Help

radicalrik

Registered User.
Local time
Today, 01:32
Joined
Apr 23, 2004
Messages
23
How would I be able to lock down anyone from editing a form or report but allowing them to run/update the form (new records) and report.
 
To only allow a user to enter new records into a form set the Data Entry property to Yes. This will, however, lock them out of viewing previously entered information.

To allow them access to view previous records (but not change the data) set each fields Locked property to Yes.

You may find it easier to create 2 separate forms to do this but it can be done using only one with some coding to check if the current record is a new record or not.

As far as reports are concerned - launch your reports from a command button on a separate form.
 
R6Flyer said:
To only allow a user to enter new records into a form set the Data Entry property to Yes. This will, however, lock them out of viewing previously entered information.

To allow them access to view previous records (but not change the data) set each fields Locked property to Yes.

You may find it easier to create 2 separate forms to do this but it can be done using only one with some coding to check if the current record is a new record or not.

As far as reports are concerned - launch your reports from a command button on a separate form.
Is there a way I can assign a command button to edit the form?
 

Users who are viewing this thread

Back
Top Bottom