X
XMan
I've got this message of "Can't assign to array" with this code:
Private Sub Form_Load()
Dim arTest() As String
arTest = Split(Me.OpenArgs, ",")
End Sub
Am I missing something here? TIA.
Private Sub Form_Load()
Dim arTest() As String
arTest = Split(Me.OpenArgs, ",")
End Sub
Am I missing something here? TIA.