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.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved