Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to make a message appear if a debug message occurs, an
also depending on the type of debug, eg 'error 13 -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Error GoTo Error_Handler
'instructions Exit Sub Error_Handler: Select Case Err.Number Case 13 MsgBox "This error is due to..." Exit Sub Case Else Exit Sub End Select HTH Regards Pascal "ianripping " a écrit dans le message de news: ... Is it possible to make a message appear if a debug message occurs, and also depending on the type of debug, eg 'error 13' --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi ianripping;
For example: On Error GoTo Bug ' Your code On Error GoTo 0 Exit Sub Bug: MsgBox "Error " & Err.Number & vbLf & Err.Description & " !", 64 End Sub Regards MP "ianripping " a écrit dans le message de ... Is it possible to make a message appear if a debug message occurs, and also depending on the type of debug, eg 'error 13' --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
DeBug | Excel Discussion (Misc queries) | |||
help with debug | New Users to Excel | |||
No debug box | Excel Programming | |||
debug - | Excel Programming | |||
debug help | Excel Programming |