![]() |
|
List of all QB64pe error messages - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Utilities (https://qb64phoenix.com/forum/forumdisplay.php?fid=8) +---- Thread: List of all QB64pe error messages (/showthread.php?tid=2540) |
List of all QB64pe error messages - TDarcos - 03-25-2024 I've created a module that contains all error numbers and the text of the error. It is intended to be placed in the top of the main program, so the info is available for any part of the program. It has been written to work even in OPTION _EXPLICIT programs. RE: List of all QB64pe error messages - a740g - 03-25-2024 (03-25-2024, 06:49 PM)TDarcos Wrote: I've created a module that contains all error numbers and the text of the error. It is intended to be placed in the top of the main program, so the info is available for any part of the program. It has been written to work even in OPTION _EXPLICIT programs. This is super helpful. Thanks! However, you do not need ERR_TEXT$. You can just call _ERRORMESSAGE$ using the error code constant. RE: List of all QB64pe error messages - Pete - 03-26-2024 Thanks, that's EXTREMELY helpful... FOR STEVE! Me, I'll never use it. Pette RE: List of all QB64pe error messages - eoredson - 03-27-2024 This program displays all Windows error messages: Code: (Select All) Rem search for error messages in windowsRE: List of all QB64pe error messages - SpriggsySpriggs - 03-27-2024 Reminds me of a little library I wrote years ago that did all this. More verbose message boxes (alephc.xyz) RE: List of all QB64pe error messages - eoredson - 03-28-2024 Of course you could do this: Code: (Select All) For x% = 1 To 1024 |