Covert a single record to read-only?

WinDancer

Registered User.
Local time
Today, 10:06
Joined
Oct 29, 2004
Messages
290
My customer is asking for the ability to convert individual records to read-only when the closed date is added to a form.

They are concerned about changes being made later. There are several hundred records in their application right now and this number will continue to grow.

A little guidance, please?

Thanks,
Dave
 
In the current event of the form (air code warning):

Code:
If IsDate(Me.ClosedDate) Then
  Me.AllowEdits = False
Else
  Me.AllowEdits = True
End If
 
Thanks, Paul :)
 
another option to write the same code that Paul suggested:

Code:
  Me.AllowEdits = Not IsDate(Me.ClosedDate)
 

Users who are viewing this thread

Back
Top Bottom