Attachmate Error Codes
Attachmate Error Codes
(OP)
I have been figuring out Extra! Basic just from using the Macro editor, and digging out VB asnwers that usually work. When I looked at the help page for the mkDir statement, the example says "If Err = 75" means that the directory already exists.
So, my question is: Is there a list of Extra! Basic error codes and their values and meanings? For example, I'm sure that mkDir can fail in ways other than encountering an existing directory. It would be nice to know which values Err can assume, and what they mean.
Any help out there?
Thanks,
Steve
So, my question is: Is there a list of Extra! Basic error codes and their values and meanings? For example, I'm sure that mkDir can fail in ways other than encountering an existing directory. It would be nice to know which values Err can assume, and what they mean.
Any help out there?
Thanks,
Steve
RE: Attachmate Error Codes
FYI, the mkdir is probably not an EB function, but a shell function using an API call.
calculus
RE: Attachmate Error Codes
RE: Attachmate Error Codes
RE: Attachmate Error Codes
RE: Attachmate Error Codes
For X = 1 to 32767
Err = X
msgbox Err & Space(5) & Error$
Next
calculus
RE: Attachmate Error Codes
I think I'll modify so I can get out when I need to.. Thanks!
RE: Attachmate Error Codes
RE: Attachmate Error Codes
calculus
RE: Attachmate Error Codes