Hi, I want to throw Exceptions in my Code and what those to be catched by the start procedure.
The Problem I'm experiencing is the following.
My start_procedure.p is instantiating a System.Windows.Forms.Form and executing wait-for.
In this form and in every other form or dialog I want to throw error and let them get catched by start_procudure.p.
I tried to delete the default catch from the constructor of the forms but it never returned to the procedure.
Is it even possible to achieve, what I want?
I found a workaround, where I run a static method of myObj.cls inside the Exceptions Constructors but I actually don't want to it this way.
The Problem I'm experiencing is the following.
My start_procedure.p is instantiating a System.Windows.Forms.Form and executing wait-for.
Code:
WAIT-FOR System.Windows.Forms.Application:Run(myObj).
I tried to delete the default catch from the constructor of the forms but it never returned to the procedure.
Is it even possible to achieve, what I want?
I found a workaround, where I run a static method of myObj.cls inside the Exceptions Constructors but I actually don't want to it this way.