I am close to posting an error handler for run-time, but I still have a minor problem.
I know I can "Raise" an error in PB for testing purposes using "ERROR"
I also know that just setting "ERR = some number" does not actually "RAISE" and error, it just sets an error value.
The SDK equivalent Are SetLastError and SetLastErrorEx. But they too only set the error flag.
"RaiseException" will raise the almighty "Had a problem and has to close" box.
How the heck do I raise and error, that I am just testing? in SDK?
I need to raise an error like PB Error 69 which says the file does not exist, but it does not end the program. Nor should it, it is just telling me the file is not there.
How do I raise an error in SDK that is not a FATAL error????
I know I can "Raise" an error in PB for testing purposes using "ERROR"
I also know that just setting "ERR = some number" does not actually "RAISE" and error, it just sets an error value.
The SDK equivalent Are SetLastError and SetLastErrorEx. But they too only set the error flag.
"RaiseException" will raise the almighty "Had a problem and has to close" box.
How the heck do I raise and error, that I am just testing? in SDK?
I need to raise an error like PB Error 69 which says the file does not exist, but it does not end the program. Nor should it, it is just telling me the file is not there.
How do I raise an error in SDK that is not a FATAL error????
Comment