If AllowedDeletions are enabled, why doesn't it work?

brunces

Registered User.
Local time
Today, 08:57
Joined
Sep 12, 2004
Messages
45
Friends,

I'm using a VB code to open a form with permissions (as a good friend has taught me how to do). Here it is...

(... more code above)
Me.Form.AllowAdditions = True
Me.Form.AllowDeletions = True
Me.Form.AllowEdits = False
(... more code below)

When the form is opened this way, as the code itself is showing, it should allow additions and deletions, but not edits. The point is... I found one problem here: besides "edits", "deletions" are not being allowed either.

Maybe I'm wrong, but I think it's because of the "AllowEdits = False".

I know that, before deleting a record, this record is "locked" to make sure that noone else is editing it. As I said above, maybe I'm wrong, but I believe that when this record is locked, it must use some of "Edits' properties" and then, as "Edits" are not allowed, "Deletions" becomes not allowed as well.

Is that it?

Well, whatever... Anybody knows if there's a way to allow deletions, even if edits are disallowed?

If there's no way to do it, that's OK. No problem. But if so, how could I do it? :)

Thank you, guys, for your attention.

Hugz.

Bruno
 

Users who are viewing this thread

Back
Top Bottom