


Workspace.ActiveWindow = The window you want to see.



I use this routine in my app, if a workspace is not already created it
will be, if it is, it activates it

' load a page onto the workspace, or give already loaded page focus.
PUBLIC SUB OpenPage(hForm AS Form)

wrkMain.Add(hForm)
wrkMain.ActiveWindow = hForm

END
