I can't figure out why there's this error in my VBA code:
If Me.AccMgr_Client_Code Is Null Then
[b.Client_Code].Value = [Client_Code]
End If
This gives an "object required run time error '424'" on the first line. I want to check if a textbox is null and if it is to assign a value to it. Thanks!
If Me.AccMgr_Client_Code Is Null Then
[b.Client_Code].Value = [Client_Code]
End If
This gives an "object required run time error '424'" on the first line. I want to check if a textbox is null and if it is to assign a value to it. Thanks!