T
TADropik
Using the simple code below, I'm able to list all errors (1 - 65,535).
For i = 1 To 65535
Print #1, i & ", " & Error(i)
Next i
However, the majority of those descriptions are:
"Application-defined or object-defined error"
Is there a way to find out what those application or object-defined errors
are?
For example;
Using the code above, Run-time error '3078' displays "Application-defined
or object-defined error"
When I actually create the run-time error, it displays:
"The Microsoft Jet database cannot find the input table or query."
For i = 1 To 65535
Print #1, i & ", " & Error(i)
Next i
However, the majority of those descriptions are:
"Application-defined or object-defined error"
Is there a way to find out what those application or object-defined errors
are?
For example;
Using the code above, Run-time error '3078' displays "Application-defined
or object-defined error"
When I actually create the run-time error, it displays:
"The Microsoft Jet database cannot find the input table or query."