activate command line and send arguments

  • Thread starter Thread starter Gabi
  • Start date Start date
G

Gabi

Hi all,
is any one can tell me please
how can i activate a command line options from my
visual basic application like:
i:
cd
etc...

Thanks
 
For A Console App.
In sub main, put declare Args() in the parenthesis. It splits the string
following the exexcutable into an array and passes it to Args.


OHM
 
* "Jesse Villani said:
Ah sorry,

Shell(str) is just for execution.

Yes -- like 'Process.Start', but with more limitations. Nevertheless,
you can start the command stell using 'Shell' by calling "cmd.exe".
 
Back
Top