Hi Guys
I have problem about method wait in my form.
I have a simple form with a button. I want to when form run it be wait() and after click on button waiting of this be false.
I wrote below code in method run of form
public void run() { super(); this.wait(true); }
and below code in the method click of button
void clicked() { super(); this.formRun().wait(false); }
my problem is, when method click run, form be Hang