- Version
- Download 153
- File Size 1.78 KB
- File Count 1
- Create Date May 5, 2016
- Last Updated May 5, 2016
Error Handler in Visual Basic 6
Error Handler in Visual Basic 6
Error handling is very important component of your program, it enables the application not to automatically close if a certain runtime error occurs during the execution of the program and at the same time gives the programmer a hint what is the solution to that error.
Additional Information
There are 3 types of programming errors:
Syntax errors – errors due to not using the proper syntax of the programming language used.
Logical or semantic errors – errors and mistakes in the program’s logic. Example (1+1, the expected result should be 2 but the program displays 3.)
Runtime errors – errors detected by the computer during the execution of a program.