Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: Joe[x86] on September 07, 2005, 04:51 PM

Title: [VB6] Command Line Arguments?
Post by: Joe[x86] on September 07, 2005, 04:51 PM
Yeah. How do you use them? Are they passed to a public variable like Java's String args[]?
Title: Re: [VB6] Command Line Arguments?
Post by: Eric on September 07, 2005, 05:11 PM
The program's command line is stored in a system variable which can be retrieved using the Command function.
Title: Re: [VB6] Command Line Arguments?
Post by: Joe[x86] on September 07, 2005, 05:19 PM
Private Sub Form_Load()
    Dim Args As String: Let Args = Command()
    Call MsgBox("Command line arguments: " & Args)
End Sub


Thanks!