On Error Resume Next

TonnyVanmunster

Member
Licensed User
Hi,

Those of you familiar with VB will certainly know the "On Error Resume Next" statement. Is there anything similar in Basic4PPC, or a way I can 'simulate' the behaviour ?

Best regards,
Tonny
 

TonnyVanmunster

Member
Licensed User
Dear Andrew,

Thanks for the feedback. I read the ErrorLabel help text and I did explore your Exceptions lib before submitting my question. However, they do not seem to offer the same functionality as the "On Error Resume Next" statement. This statement specifies that when a run-time error occurs, control goes to the statement immediately following the statement where the error occurred, where execution continues.

Best regards,
Tonny
 

agraham

Expert
Licensed User
Longtime User
However, they do not seem to offer the same functionality as the "On Error Resume Next" statement.
They don't and there is no equivalent in .NET. The help for the Exceptions library attempts to explain how .NET and Basic4ppc handle errors.
 
Top