Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Error Handling - Did i do it correct


Hi All,

I know error handling can be tricky.
So i have this in some code i am working on. i just want to make sure i
am doing it correctly.

I have this at the very top:

Code:
--------------------
On Error GoTo ErrHandler:
--------------------


This is at the very bottom"

Code:
--------------------
Exit Sub
ErrHandler: ActiveSheet.Protect
MsgBox ("You did not open ''UCPSITE-06.xls''")
--------------------

This code is copying data from another open workbook, then pasting into
this one.
If the other workbook is not open, i want to exit sub and show message
box.

It seems to be working, but i wanted to get a guru's opinion.


--
Desert Piranha


------------------------------------------------------------------------
Desert Piranha's Profile: http://www.excelforum.com/member.php...o&userid=28934
View this thread: http://www.excelforum.com/showthread...hreadid=560960

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Error Handling - Did i do it correct

Desert Piranha wrote:
Hi All,

I know error handling can be tricky.
So i have this in some code i am working on. i just want to make sure i
am doing it correctly.

I have this at the very top:

Code:
--------------------
On Error GoTo ErrHandler:
--------------------


This is at the very bottom"

Code:
--------------------
Exit Sub
ErrHandler: ActiveSheet.Protect
MsgBox ("You did not open ''UCPSITE-06.xls''")
--------------------

This code is copying data from another open workbook, then pasting into
this one.
If the other workbook is not open, i want to exit sub and show message
box.

It seems to be working, but i wanted to get a guru's opinion.




OK
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default Error Handling - Did i do it correct

The line:
On Error GoTo ErrHandler:
creates an Active error handler. Errors "bubble up" through the stack until
such an active error handler is found. If none is found, that when you get
the VBA msgbox saying "Error: Subscript out range" or whatever and your code
abruptly stops.
See if the example below helps see the possiblities:

Private Sub CommandButton1_Click()
Call StartMacro
End Sub

Sub StartMacro()
On Error GoTo Handler:
Call Sub1
Exit Sub
Handler:
'Select case Err.Number...etc
MsgBox "Error handled in StartMacro" & vbNewLine & Err.Description
End Sub

Sub Sub1()
On Error GoTo Handler
Call Func1
Worksheets(0).Select 'Create an Error
Exit Sub
Handler:
Select Case Err.Number
Case 11 'Division by 0
MsgBox "Error handled in Sub1"
Resume Next
Case Else
Dim errnum As Long
MsgBox "Passing error up the stack"
errnum = Err.Number
Err.Raise errnum, "Sub1", "Not 1/0 error"
End Select
End Sub

Function Func1() As Long
'No error handling in this function
Func1 = 1 / 0 'Create an Error
End Function

NickHK

"Desert Piranha"
<Desert.Piranha.2av868_1152763211.4921@excelforu m-nospam.com wrote in
message news:Desert.Piranha.2av868_1152763211.4921@excelfo rum-nospam.com...

Hi All,

I know error handling can be tricky.
So i have this in some code i am working on. i just want to make sure i
am doing it correctly.

I have this at the very top:

Code:
--------------------
On Error GoTo ErrHandler:
--------------------


This is at the very bottom"

Code:
--------------------
Exit Sub
ErrHandler: ActiveSheet.Protect
MsgBox ("You did not open ''UCPSITE-06.xls''")
--------------------

This code is copying data from another open workbook, then pasting into
this one.
If the other workbook is not open, i want to exit sub and show message
box.

It seems to be working, but i wanted to get a guru's opinion.


--
Desert Piranha


------------------------------------------------------------------------
Desert Piranha's Profile:

http://www.excelforum.com/member.php...o&userid=28934
View this thread: http://www.excelforum.com/showthread...hreadid=560960



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Error Handling - Did i do it correct


NickHK Wrote:
The line:
On Error GoTo ErrHandler:
creates an Active error handler. Errors "bubble up" through the stac
until
such an active error handler is found. If none is found, that when yo
get
the VBA msgbox saying "Error: Subscript out range" or whatever and you
code
abruptly stops.
See if the example below helps see the possiblities:

Private Sub CommandButton1_Click()
Call StartMacro
End Sub

Sub StartMacro()
On Error GoTo Handler:
Call Sub1
Exit Sub
Handler:
'Select case Err.Number...etc
MsgBox "Error handled in StartMacro" & vbNewLine & Err.Description
End Sub

Sub Sub1()
On Error GoTo Handler
Call Func1
Worksheets(0).Select 'Create an Error
Exit Sub
Handler:
Select Case Err.Number
Case 11 'Division by 0
MsgBox "Error handled in Sub1"
Resume Next
Case Else
Dim errnum As Long
MsgBox "Passing error up the stack"
errnum = Err.Number
Err.Raise errnum, "Sub1", "Not 1/0 error"
End Select
End Sub

Function Func1() As Long
'No error handling in this function
Func1 = 1 / 0 'Create an Error
End Function

NickHKHi NickHK,


WOW

Thank you so much for this. Very cool

--
Desert Piranh

-----------------------------------------------------------------------
Desert Piranha's Profile: http://www.excelforum.com/member.php...fo&userid=2893
View this thread: http://www.excelforum.com/showthread.php?threadid=56096

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Error Handling JT Excel Programming 1 April 6th 06 03:20 PM
Error Handling - On Error GoTo doesn't trap error successfully David Excel Programming 9 February 16th 06 05:59 PM
Error handling with a handling routine ben Excel Programming 0 March 15th 05 03:01 PM
error handling off?? Tom Ogilvy Excel Programming 0 August 19th 04 04:31 PM
error handling jeffP Excel Programming 1 July 3rd 04 06:10 PM


All times are GMT +1. The time now is 02:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"