devxlogo

Return a Dos error code on exit

Return a Dos error code on exit

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:

Private Declare Sub ExitProcess Lib "kernel32" (ByVal uExitCode As Long)' Exit with ErrorLevel set to 9ExitProcess 9

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

REM a Ms-Dos batch fileCD c:MyAppText.ExeIf Errorlevel 2 Goto ExitCodeIsTwoIf Errorlevel 1 Goto ExitCodeIsOneREM process here a null exit codeREM ...GOTO EndBatch:ExitCodeTwoREM process here exit code equals to twoREM ...GOTO EndBatch:ExitCodeOneREM process here exit code equals to oneREM ...:EndBatchECHO 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.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist