|
HI.
I want to calrify more what I need.
suppose the following code segment:
program 1{
statement 1.
statement 2.
new MyFrame().launch();
statement 3.
statement 4.
}
When the statment "new MyFrame().launch();" is reached and thus a frame is displayed , I want the program to stop at this statement and doesn't continue exexuting statments3,4 until the frame displayed is disposed (closed).
Thanks
|