I'm trying to keep my sub form locked until user enters thier initials on the main form. I tried the following in the Form_Current, but just don't have enough experience with vb to get it right. Any help would be great.
If Me.UserInitials & ""="" Then
[frmDataEntry].Form.Enabled = False
Else
[frmDataEntry].Form.Enabled = True
End If
If Me.UserInitials & ""="" Then
[frmDataEntry].Form.Enabled = False
Else
[frmDataEntry].Form.Enabled = True
End If