Question:
On a frame, how can I open a screen on another frame?
Solution:
To do so, you can use a script with methods GetFrame() and OpenScreen().
Example: Application.GetFrame(“”).OpenScreen “NameOfTheFrame”, 0
This method opens the frame with the initial settings made by the developer. To open another screen (not the default screen for the frame’s splitter), you must open this screen after the frame had been opened.
Example: Application.GetFrame(“NameOfTheSplitter”).OpenScreen “NameOfTheScreen”, CLng(0)