Hi everyone,
I am running page2 from page1 with a runmodal instruction.
I want page 1 to close after page 1 is opened.
I tried the following code:
page2.RUNMODAL;
CurrPage.CLOSE();
but it didn't work like I want: page1 stays opened until I close page2, then it closes...
Is there a way to achieve what I described?
Thanks in advance
Comments
The main reason to use RUNMODAL is that you would need the results of Page2 to use them in Page1 - but since you want to close Page1 I guess you should use RUN instead of RUNMODAL