I'm trying to learn how to use the command() function, can anyone please help. TIA, XinMan
something like this: Code: Private Sub Form_Load() Dim strCommandLine As String strCommandLine = Command() if strCommandLine = ....... 'do something end if end sub if you are hoping to pass several arguments you will need to parse strCommandLine for and split it up. ------------------ Mark Sreeves Analyst Programmer [email protected] A BMW Group Company
Private Sub Form_Load() Dim strCommandLine As String strCommandLine = Command() if strCommandLine = ....... 'do something end if end sub
Forum Rules