Hello
I am doing a simple DoCmd, OpenArgs.
with the following OpenArgsCode:DoCmd. OpenForm "FrmNewDocument",,,"BCPKey = " & Me.[BCPKey],,, Me.BCPKey
However the BCPKey is a Primary Key with a a format of "BCP"0Code:If Me.OpenArgs <> "" Then Me.[BCPKey].DefaultValue = "" & Me.OpenArgs & "" End IF
Now, viewing this information in my datasheet I have the the prefix, but how do I add the prefix to the new form being opened?
Regards