S
Stu
PROBLEM: I open a form as ReadOnly but I can change any data regardless.
Further info below.
From a button click on Form A, I open a pop-up Form B as follows:
DoCmd.OpenForm "frmWeb_info", , , , acFormReadOnly, , Me.ItemID
My Form B Load Event is as follows, there is no Current Event code:
Private Sub form_load()
Me.Filter = "itemID = " & Me.OpenArgs
Me.FilterOn = True
'''MsgBox Me.DataEntry '''Me.Data Entry will display False
Me.LeadURL = "https://www.somewhere.com"
Me.PartURL = "https://www.somewhere.com"
End Sub
Why doesn't Form B open as Read Only? Please prompt if more info is needed.
Thanks.
Further info below.
From a button click on Form A, I open a pop-up Form B as follows:
DoCmd.OpenForm "frmWeb_info", , , , acFormReadOnly, , Me.ItemID
My Form B Load Event is as follows, there is no Current Event code:
Private Sub form_load()
Me.Filter = "itemID = " & Me.OpenArgs
Me.FilterOn = True
'''MsgBox Me.DataEntry '''Me.Data Entry will display False
Me.LeadURL = "https://www.somewhere.com"
Me.PartURL = "https://www.somewhere.com"
End Sub
Why doesn't Form B open as Read Only? Please prompt if more info is needed.
Thanks.