Show Error Number : Error « Language Basics « VBA / Excel / Access / Word






Show Error Number

 

Sub ErrorTrap2()
  Dim MyFile As String, Message As String
  Dim Answer As String
  
  On Error GoTo errTrap
  
  Workbooks.Add
  MyFile = "C:\Data.xls"
  Kill MyFile
  ActiveWorkbook.SaveAs FileName:=MyFile
  ActiveWorkbook.Close
 
  Exit Sub
errTrap:
  Message = "Error No: = " & Err.Number & vbCr
  Message = Message & Err.Description & vbCr & vbCr
  Message = Message & "File does not exist"
  Answer = MsgBox(Message, vbInformation, "Error")
  Resume Next
End Sub

 








Related examples in the same category

1.Properties of the Err Object
2.Raising an Error
3.Deal with the error
4.Create an error, and then query the object for the error number and description
5.Check the error number
6.Get the Error source
7.Creating a User-Defined Error
8.Viewing the Errors Stored in the Errors Collection
9.Using the LogError Routine
10.Writing Information to a Textual Error Log File
11.The Mail your Error Routine
12.Move through the Errors collection and display properties of each Error object
13.Trap the error with On Error GoTo
14.Show Error discription in MsgBox
15.Runtime Error 9: Subscript Out of Range
16.RunTime Error 1004: Method Range of Object Global Failed
17.Try again in case an error