|
|
|
At times you may want to return a Dos ErrorLevel when closing your VB application. This can be necessary, for example, if the EXE is meant to be called from a batch file. Exiting the program with an error code is really simple, and requires only a call to the ExitProcess API function: |
The following Ms-Dos batch error runs the Text.Exe application, and then tests whether its error level is 2, 1, or zero. Note that exit codes must be tested in reverse order, from the highest value downward |
Click here to copy the following block | REM a Ms-Dos batch file CD c:\MyApp Text.Exe If Errorlevel 2 Goto ExitCodeIsTwo If Errorlevel 1 Goto ExitCodeIsOne
REM process here a null exit code REM ... GOTO EndBatch
:ExitCodeTwo REM process here exit code equals to two REM ... GOTO EndBatch
:ExitCodeOne REM process here exit code equals to one REM ...
:EndBatch ECHO goodbye. |
It should be noted, however, that closing VB in this way isn't recommanded by Microsoft, because some cleanup code isn't correctly executed. For this reason, you should use the above code only for tiny programs that process their command line arguments and display little or no user interface, that is the type of utilities that you invoke from batch files. |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|