uneditable forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a problem that maybe you can help me out on. In the properties for
Form1, I set the AllowEdits,AllowAdditions, and Allow Deletiions all to false
but when I try to call Form1 from a different form, I am able to add, delete
and edit records and I can't figure out why. Any help would be apprecitated.
 
bbdobuddy said:
Hi,

I have a problem that maybe you can help me out on. In the
properties for Form1, I set the AllowEdits,AllowAdditions, and Allow
Deletiions all to false but when I try to call Form1 from a different
form, I am able to add, delete and edit records and I can't figure
out why. Any help would be apprecitated.

Your code to open the form is likely using the acFormEdit argument of the
OpenForm method which turns all of those properties back off.
 
Back
Top