Hi,
I am developing a Customization in Dexterity which consists of a functionality behaving like a wizard. I have thus created a Form having several Windows. I am trying to close and open each successive windows in the Wizard using the following code:
open window 'MySecondWindow' of form 'MainForm';
close window 'MyFisrtWindow' of form 'MainForm';
Meanwhile, when using these statements no forms are opened after executing the code.
Nevertheless, if I only include the first statement (i.e. open window 'MySecondWindow' of form 'MainForm';), the Second form does open, but the First form obviously remains opened.
I have also tried to hide the First form by using hide window 'MyFisrtWindow', but this also does not work (the window remains opened).
Thank you.
Regards,
Joseph
*This post is locked for comments