B
Brian
Hello all,
I have a app that has a custom menubar, a main form with a subform
embedded. It's the subform that contains the information I am most
concerned with. I've got an "Edit Record" button on my menubar that I
want to use with my subform. By default, the subform has the AllowEdits
= False so my users cannot change information. Since I am using a
menubar and haven't been able to call subroutines, I've placed a
function in a module to do my dirty work. I'm having trouble with it
and maybe it's just a deal with exact refering, but, I haven't been able
to set the allowEdits = True on the subform, just the mainform.
I've tried:
Forms![mainForm]![subform].forms.AllowEdits = True
Me.AllowEdits = True
Screen.ActiveForm.AllowEdits = True
Forms("mainForm").Subform.AllowEdits = True
Can someone point me in the right direction?
Thanks.
Brian
I have a app that has a custom menubar, a main form with a subform
embedded. It's the subform that contains the information I am most
concerned with. I've got an "Edit Record" button on my menubar that I
want to use with my subform. By default, the subform has the AllowEdits
= False so my users cannot change information. Since I am using a
menubar and haven't been able to call subroutines, I've placed a
function in a module to do my dirty work. I'm having trouble with it
and maybe it's just a deal with exact refering, but, I haven't been able
to set the allowEdits = True on the subform, just the mainform.
I've tried:
Forms![mainForm]![subform].forms.AllowEdits = True
Me.AllowEdits = True
Screen.ActiveForm.AllowEdits = True
Forms("mainForm").Subform.AllowEdits = True
Can someone point me in the right direction?
Thanks.
Brian