Yeah. How do you use them? Are they passed to a public variable like Java's String args[]?
The program's command line is stored in a system variable which can be retrieved using the Command function.
Private Sub Form_Load()
Dim Args As String: Let Args = Command()
Call MsgBox("Command line arguments: " & Args)
End Sub
Thanks!