What's new

Closed Managing Errors/ Different Errors of Visual Basic

Status
Not open for further replies.

Xyeene

Eternal Poster
Joined
Mar 6, 2015
Posts
751
Solutions
5
Reaction
1,130
Points
352
TYPES OF ERRORS :stop:

1. SYNTAX ERRORS
Most obvious type of error. This occurs when you write a program code in a manner that is not allowed by VB.NET language. Determining this error is easy. The position of the code in where you had an error will show you an error with a tooltip that will show you about the short description about your error code.

syntaxError1.gif


2. RUN-TIME Errors
Errors that occur when a statement attmepts an operation, such as mathematical equation, that is impossible to execute. Run-time errors are often result of unexpected or unforeseen actions like the user selected an invalid file type during file reading.

runtime-error.jpg

3. Logic Errors
This is an error that causes a program to produce incorrect results.Considered also as critical error. Logic errors are found by testing the program and analyzing results.


For educational use. :ROFLMAO:

 
Status
Not open for further replies.
Back
Top