I have a button on a form(Form1) with the following code:
DoCmd.OpenForm "Form1", , , , , , "ReadOnly"
On the load event on Form2 I have the following code:
If Me.OpenArgs = "ReadOnly" Then
Me.FieldName.Locked = True
Me.FieldName.BackColor = 12632256
Else
Me.FieldName.Locked =...