Private Sub Form_Load()
Dim strOpenArgs As String
strOpenArgs = Me.OpenArgs
Dim argVars() As String
argVars = Split(Me.OpenArgs, ",")
Me.CboPerson.Value = CInt(argVars(0))
End Sub
Hi, the code above simply does nothing. No errors, no change in the desired form. I've confirmed...