All functions
Mac OS X
Windows
Crossplatform
Server
Components
Guides
Statistic
New in version:
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
2.8
2.9
3.0
3.1
3.2
Window.Show
Component: Window
Version: 1.0
Mac OS X: Works
Windows: Works
Server: Will not work on server due to missing GUI.
MBS( "Window.Show" ; WindowRef )
Parameters
| Parameter | Description | Example value |
|---|---|---|
| WindowRef | Window Reference is the unique OS level window ID. You can obtain this by using the Window.FindByTitle or Window.FindByIndex functions. Pass zero to access the frontmost window. | 0 |
Result
Returns OK on success.
Description
Shows the window Specified by the Window Reference.This can be used to show a window without bringing the window to the front.
Examples
Show a Window without bringing it the front
Let(
[
/*-----------------PARAMETERS--------------------*/
WindowRef = MBS( "Window.FindByTitle" ; "My Window" )
];
/*-------------------FUNCTION----------------------*/
MBS(
"Window.Show";
WindowRef
)
)
Feedback: Report problem or ask question.