S Shawny Registered User. Local time Today, 22:00 Joined Apr 15, 2000 Messages 64 Nov 29, 2001 #1 Is it possible to not allow edits for just one particular record?
J Jack Cowley Registered User. Local time Today, 22:00 Joined Aug 7, 2000 Messages 2,636 Nov 29, 2001 #2 If your form displays single records you could put code in the On Current event to see which record is being display. When the one that can be edited is showing then change the Allow Edits from No to Yes.
If your form displays single records you could put code in the On Current event to see which record is being display. When the one that can be edited is showing then change the Allow Edits from No to Yes.
joeserrone The cat of the cul-de-sac Local time Today, 17:00 Joined Dec 17, 2006 Messages 164 Jan 30, 2008 #3 Record Locking Hi Jack, Do you happen to have a working example of this?
G Gannet Registered User. Local time Today, 17:00 Joined Sep 21, 2006 Messages 55 Jan 30, 2008 #4 This might help within the OnCurrent event you could look for specific data in one of your controls using: Code: If YourControl = SomeValue Then Me.AllowEdits = False Else Me.AllowEdits = True End If
This might help within the OnCurrent event you could look for specific data in one of your controls using: Code: If YourControl = SomeValue Then Me.AllowEdits = False Else Me.AllowEdits = True End If