Hi there again,
I use this little function to change the allowEdit Property on forms by clicking a command button. Can anyone tell me how I can also change the property on sub-forms at the same time?
Public Function Toggle_Forms()
Dim frm As Form
For Each frm In Forms
frm.AllowEdits = True
Next frm
End Function
thanks!
I use this little function to change the allowEdit Property on forms by clicking a command button. Can anyone tell me how I can also change the property on sub-forms at the same time?
Public Function Toggle_Forms()
Dim frm As Form
For Each frm In Forms
frm.AllowEdits = True
Next frm
End Function
thanks!