michaeljohannes
Registered User.
- Local time
- Today, 06:05
- Joined
- May 3, 2007
- Messages
- 67
Hello,
I think this is possible with a crafty use of
but I'm not sure.
I have a form that has two subforms in it. I simply want to make this form (and the two sub forms!) LOCKED so the user has to click a command button to unlock them. It's not an issue of security, rather an issue of accidentally updating, deleting information undesirably.
When I use the above code in the "On Open" event (or "On Load" for that matter" ) the main form is not editable (the form is locked), but, the above code does not lock the two subforms from being edited.
Any ideas? I think it's a simple fix, but I'm not sure.
Thanks!
Mike
I think this is possible with a crafty use of
Code:
me.allowedits = false
but I'm not sure.
I have a form that has two subforms in it. I simply want to make this form (and the two sub forms!) LOCKED so the user has to click a command button to unlock them. It's not an issue of security, rather an issue of accidentally updating, deleting information undesirably.
When I use the above code in the "On Open" event (or "On Load" for that matter" ) the main form is not editable (the form is locked), but, the above code does not lock the two subforms from being edited.
Any ideas? I think it's a simple fix, but I'm not sure.
Thanks!
Mike