I have a form with a combo box, usually run with no parameter - the combo box starts empty.
But sometimes I want to call the form with a parameter. How do I pick that up and load it into the combo box?
I have tried this in On Open:
If me.OpenArgs Is Not Null Then
me.Combo99 = me.Openargs
End If
But that gets error messages. What am I doing wrong here?
Robert
But sometimes I want to call the form with a parameter. How do I pick that up and load it into the combo box?
I have tried this in On Open:
If me.OpenArgs Is Not Null Then
me.Combo99 = me.Openargs
End If
But that gets error messages. What am I doing wrong here?
Robert