5/8 Is there a Visual Basic equivalent to the UNIX system() function?
I need to write a VB program to run a bunch of dos commands
and report the results to the user. If I had a choice, I would
use perl, python, tcl, bash, or something like that, but I need
to create a program that will run a standard windows system. Thanks.
\_ Yes.
\_ Yes.
\_ Perl runs on windows just fine, so does the bourne shell.
\_ Sorry. What I should have said was that I need a solution
which does not involve installing perl, python, tcl, bash or
some other tool which is not installed on a standard system.
\_ Install gcc and write a C program to do it.
\_ Duh. Without installing anything.
\_ ShellExecute or CreateProcess - chiapet
\_ Shell (command, windowmode)
\_ Thanks. Shell seems decent. Is there any way for Shell
to return the output to VB? |