Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Executing commands in DOS

Status
Not open for further replies.

VisualBasicHelp

Programmer
Sep 7, 2005
74
GB
I am trying to execute a wzzip command of DOS from VB, using shell.
I know how to open DOS from VB. But can anybody tell me how to execute the wzzip command from VB,hiding the command prompt(DOS) window.

Thanks
 
I have opened the DOS by
shell("cmd.exe",vbhide)
but can you tell me how to execute a command in it(ex. "dir" command)

Thanks
 

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Exec ("cmd.exe /dir")
 
I have done like this -

Shell("cmd /c wzzip -a -p -r -ybc " & strStoreZip & " " & strPathZip

Its working.

But I have one more doubt -

After this command if I am checking whether the specified file exists or not, then it says it doesn't exists but it is actually created. May be the shell command is taking time and before completing the command, its checking whether the file exists.

Is there any way to find out whether the shell command has been executed successfully.

Thanks
 
do a search in this forum for ShellAndWait


-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
DoEvents() will not help. Shell opens a command window and 'carries on' It doesn't wait for the command window to close. Sometimes you wouldn't want the command window to close.

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top