Jump to content

VB6.0:Tutorial, Error handling

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
11 replies to this topic

#1
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Introduction:-
Ok So I decided to make a tutorial about error handling! Many programs don't contain error handling but I suggest you that you include it! This will make your program more powerful

Solution:-
Ok so I am going to show you this code then I will expalin it. I will show you 3 types of error handling

What you need:-
    3 Command buttons
    Some time

Here is the code

Private Sub Command1_Click()

On Error GoTo ErrorHandler

Error 424 'This error is displayed when there is a missing object

Exit Sub

ErrorHandler:

MsgBox "Error Number: " & Err.Number & " With The Description ->> " & Err.Description & " <<- Occured."

End Sub


Private Sub Command2_Click()

On Error GoTo ErrorHandler

Error 424

Exit Sub

ErrorHandler:

If Err.Number = 424 Then

MsgBox "A missing object in your form is needed!, Please refer to the code and arrange accordingly!"

Else: MsgBox "Error Number: " & Err.Number & " With The Description ->> " & Err.Description & " <<- Occured."

End If

End Sub


Private Sub Command3_Click()

On Error Resume Next

Error 424 'This error is displayed when there is a missing object

MsgBox "error ignored!"

End Sub



Explanation:-

On Error GoTo ErrorHandler


This will tell the program that when an error is found it will call the 'chunk' of code named ErrorHandler ( you will see it in a while )


Error 424 'This error is displayed when there is a missing object

Exit Sub


This will generate an error, instead of this code you will have your code here, I just made that for an error to be generated so DON'T include that in your program this is just for testing purposes!!! and the 2nd line is there so to IF no error occurs the 'chunk' of code named ErrorHandler will not be executed

Posted Image


ErrorHandler:

MsgBox "Error Number: " & Err.Number & " With The Description ->> " & Err.Description & " <<- Occured."

End Sub

[code]

This will be the action that will be done when an error occurs it will show you the error number and the description!


[code]

ErrorHandler:

If Err.Number = 424 Then

MsgBox "A missing object in your form is needed!, Please refer to the code and arrange accordingly!"

Else: MsgBox "Error Number: " & Err.Number & " With The Description ->> " & Err.Description & " <<- Occured."

End If

This will be found on the Command2 event instead this type of error handling is when the programmer knows for example that when something is done the error will popup so he should make this type of error handling so not to let his program crash. here I edded IF .... THEN.... ELSE so IF the error number is 424 THEN it will do something or if not ELSE it will show the first method

Posted Image


On Error Resume Next

Error 424 'This error is displayed when there is a missing object

MsgBox "error ignored!"


Posted Image

Here we are telling the program to just IGNORE the error and continue the next action ( in this case show a msg box )

Conclusion:-
As Always Feedback is welcome and the full source is attached!!

Attached Files



#2
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
OMG pls Jordan can you remove this spammers post thanks!

#3
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Wow, that is the 4th one I have removed from this tutorial. They really like this one!

#4
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Lol! its my tutorial :) of course they like it!! lol just kidding! duh damm spammers! they are all over the net!!

#5
xXHalfSliceXx

xXHalfSliceXx

    Speaks fluent binary

  • Moderators
  • 1,694 posts
Suggested that we enable Image Verification on registration. I made a thread about it for the Mods/Admins to comment.

Posted Image
Posted Image


#6
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts

xXHalfSliceXx said:

Suggested that we enable Image Verification on registration. I made a thread about it for the Mods/Admins to comment.

Well I sugegsted another thing in here:-
http://forum.codecal...f.html#post8774
This would definitely make it harder!!

#7
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts

Jordan said:

Wow, that is the 4th one I have removed from this tutorial. They really like this one!

Well perhaps because it has 4 votes? as rating? I really dont know!!

#8
mathewbuer.com

mathewbuer.com

    Newbie

  • Members
  • Pip
  • 1 posts
i am hqavin a javascript error will this resolve this issue?

#9
utardylan

utardylan

    Newbie

  • Members
  • Pip
  • 1 posts
i will take a look

#10
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts

mathewbuer.com said:

i am hqavin a javascript error will this resolve this issue?

This is a VB tutorial not a JS one.

#11
AcroneShadow

AcroneShadow

    Newbie

  • Members
  • PipPip
  • 16 posts
Ahh very nice. This will definately make things so much better for my progs. Best of luck :cool:

#12
chaoz

chaoz

    Newbie

  • Members
  • Pip
  • 1 posts
thanks bro never used error handling in my progs before now i can make them run smoother