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!

Batch file from previous employee. What???????

Status
Not open for further replies.

hmstoo44dd

Programmer
Sep 27, 2002
32
US
Can anyone interpret this script for me, and maybe give me a resource so I can study this stuff? This is a batch file that runs before calling several vb6 .exe's.

:MAKE1
VB6 /MAKE /OUT C:\project\progress.log "C:\Documents and Settings\mystuff\desktop\myDirectory\myfolder\job.vbp"
IF NOT ERRORLEVEL 1 goto make2
START /WAIT "C:\Program Files\Microsoft Visual\Studio\VB98\vb6.exe" "C:\Documents and Settings\mystuff\desktop\myDirectory\myfolder\job.vbp"
PAUSE

:MAKE2 ................................


Thanks for your help
 
Go to a command prompt, and change to the folder that contains VB6.EXE (C:\Program Files\Microsoft Visual Studio\VB98 on my machine).

Then, type VB6 /? from the command prompt... you will explanations of the various VB6 parameters used in the batch file.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top