This page says:
"If you are generating errors, then you should add your number to the vbObjectError constant. Eg Err.Raise Number = vbObjectError + 1000. The range 513 - 65535 is available for user defined errors."
also O'Reilly says:
"we are left with numbers in the range vbObjectError + 512 to vbObjectError + 65535"
Ok, I did, but I got a native, instead of a custom, error:
Err.Raise vbObjectError + 515
Automation error
A syntax error occurred trying to evaluate a query string
This site says the error code for that error-message is
EVENT_E_QUERYSYNTAX As Long = &H80040203
The VBA immediate pane confirms this:
?&H80040203
-2147220989 <-- equals vbObjectError + 515
bettersolutions.com also says:
"The range 513 - 65535 is available for user defined errors"
If I'm supposed to add vbObjectError, and if 513-65535 is usable, then why does Err.Raise vbObjectError + 515 give me a native Visual Basic error!?
Ok, let's say they mean my custom codes should start at 513, and forget about vbObjectError. But bettersolutions Codes page shows native errors of 520, 521, some 700's, and some 31000's.
I've read various articles and SO pages on this topic, but still totally confused.
Microsoft documentation I've read seems to give yet different advice:
"User-defined error numbers should be greater than this value." https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualbasic.constants.vbobjecterror
So, can I start at vbObjectError + 1?
Update 1: Native Errors
This procedure lists every unique error in any number range you set.
Sub ListErrs()
Dim lRow As Long, lCol As Long, lErr As Long, sError As String
lCol = 4
Application.ScreenUpdating = False
For lErr = -2000000 To 1000000
Application.StatusBar = lErr
On Error Resume Next
Err.Raise lErr
If (Error <> sError) Then
lRow = lRow + 1
If lRow > 1048576 Then
lRow = 1
lCol = lCol + 1
End If
sError = Error
Cells(lRow, lCol) = lErr & " : " & sError
Windows(1).ScrollRow = lRow
End If
On Error GoTo 0
DoEvents
Next lErr
Application.ScreenUpdating = True
End Sub
I ran it for EVERY number from -2 million to +1 million, and for many (not all) numbers between -2 billion (vbObjectErr) and -2 million. I didn't run for all numbers between -2 billion (vbObjectErr) and -2 million, because that would take a week (maybe someone out there can make it faster).
Here's what I found. These results seem to disagree with the information on bettersolutions.
-2147221504 Automation error
-2147221230 ActiveX component can't create object
-2147221229 Automation error
-2147221164 ActiveX component can't create object
-2147221163 Automation error
-2147221021 ActiveX component can't create object
-2147221020 Automation error
-2147221018 File name or class name not found during Automation operation
-2147221017 Automation error
-2147221014 File name or class name not found during Automation operation
-2147221013 Automation error
-2147221006 Automation error
-2147221005 ActiveX component can't create object
-2147221004 Automation error
-2147221003 ActiveX component can't create object
-2147221002 Automation error
-2147220994 ActiveX component can't create object
-2147220993 Automation error
-2000000 Automation error
0 Invalid procedure call or argument
1 Application-defined or object-defined error
3 Return without GoSub
4 Application-defined or object-defined error
5 Invalid procedure call or argument
6 Overflow
7 Out of memory
8 Application-defined or object-defined error
9 Subscript out of range
10 This array is fixed or temporarily locked
11 Division by zero
12 Application-defined or object-defined error
13 Type mismatch
14 Out of string space
15 Application-defined or object-defined error
16 Expression too complex
17 Can't perform requested operation
18 User interrupt occurred
19 Application-defined or object-defined error
20 Resume without error
21 Application-defined or object-defined error
28 Out of stack space
29 Application-defined or object-defined error
35 Sub or Function not defined
36 Application-defined or object-defined error
47 Too many DLL application clients
48 Error in loading DLL
49 Bad DLL calling convention
50 Application-defined or object-defined error
51 Internal error
52 Bad file name or number
53 File not found
54 Bad file mode
55 File already open
56 Application-defined or object-defined error
57 Device I/O error
58 File already exists
59 Bad record length
60 Application-defined or object-defined error
61 Disk full
62 Input past end of file
63 Bad record number
64 Application-defined or object-defined error
67 Too many files
68 Device unavailable
69 Application-defined or object-defined error
70 Permission denied
71 Disk not ready
72 Application-defined or object-defined error
74 Can't rename with different drive
75 Path/File access error
76 Path not found
77 Application-defined or object-defined error
91 Object variable or With block variable not set
92 For loop not initialized
93 Invalid pattern string
94 Invalid use of Null
95 Application-defined or object-defined error
96 Unable to sink events of object because the object is already firing events to the maximum number of event receivers that it supports
97 Can not call friend function on object which is not an instance of defining class
98 A property or method call cannot include a reference to a private object, either as an argument or as a return value
99 Application-defined or object-defined error
321 Invalid file format
322 Can't create necessary temporary file
323 Application-defined or object-defined error
325 Invalid format in resource file
326 Application-defined or object-defined error
380 Invalid property value
381 Invalid property array index
382 Set not supported at runtime
383 Set not supported (read-only property)
384 Application-defined or object-defined error
385 Need property array index
386 Application-defined or object-defined error
387 Set not permitted
388 Application-defined or object-defined error
393 Get not supported at runtime
394 Get not supported (write-only property)
395 Application-defined or object-defined error
422 Property not found
423 Property or method not found
424 Object required
425 Application-defined or object-defined error
429 ActiveX component can't create object
430 Class does not support Automation or does not support expected interface
431 Application-defined or object-defined error
432 File name or class name not found during Automation operation
433 Application-defined or object-defined error
438 Object doesn't support this property or method
439 Application-defined or object-defined error
440 Automation error
441 Application-defined or object-defined error
442 Connection to type library or object library for remote process has been lost. Press OK for dialog to remove reference.
443 Automation object does not have a default value
444 Application-defined or object-defined error
445 Object doesn't support this action
446 Object doesn't support named arguments
447 Object doesn't support current locale setting
448 Named argument not found
449 Argument not optional
450 Wrong number of arguments or invalid property assignment
451 Property let procedure not defined and property get procedure did not return an object
452 Invalid ordinal
453 Specified DLL function not found
454 Code resource not found
455 Code resource lock error
456 Application-defined or object-defined error
457 This key is already associated with an element of this collection
458 Variable uses an Automation type not supported in Visual Basic
459 Object or class does not support the set of events
460 Invalid clipboard format
461 Method or data member not found
462 The remote server machine does not exist or is unavailable
463 Class not registered on local machine
464 Application-defined or object-defined error
481 Invalid picture
482 Printer error
483 Application-defined or object-defined error
735 Can't save file to TEMP
736 Application-defined or object-defined error
744 Search text not found
745 Application-defined or object-defined error
746 Replacements too long
747 Application-defined or object-defined error
65536 Invalid procedure call or argument
Update 2: .Source
It seems it would have been better if VB allowed every app to define it's own error numbers (even overlapping ones) with a disambiguator, but what do i know? My answer below demonstrates a possible solution using .Source as diambiguator.
You could use the following code and find out yourself what are the actually free errors numbers: