Get the Command Line using API:   Return to List

Private Declare Function GetCommandLine Lib "kernel32" Alias _
    "GetCommandLineA" () As String

Private Sub Command1_Click()
    MsgBox GetCommandLine
End Sub



Note to Webmaster