Core Function GUIMDICreate
From Sputnik Wiki
(Difference between revisions)
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | GUICreate( "MDIWindow", <Text>, < | + | GUICreate( "MDIWindow", <Text>, <Width>, <Height>, <Left>, <Top>, <Style> ) |
</pre> | </pre> | ||
Line 11: | Line 11: | ||
==== text ==== | ==== text ==== | ||
The text (ie Title) the window should display. | The text (ie Title) the window should display. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==== width ==== | ==== width ==== | ||
− | + | The width of the object. | |
==== height ==== | ==== height ==== | ||
− | + | The height of the object. | |
+ | |||
+ | ==== left ==== | ||
+ | Optional; LEFT Position to create the object. | ||
+ | |||
+ | (-1 means center of screen) | ||
+ | |||
+ | ==== top ==== | ||
+ | Optional; TOP Position to create the object. | ||
+ | (-1 means center of screen) | ||
==== style ==== | ==== style ==== | ||
Optional; The style of the window frame. | Optional; The style of the window frame. |
Revision as of 19:19, 17 August 2013
GUICreate( "MDIWindow", <Text>, <Width>, <Height>, <Left>, <Top>, <Style> )
Contents |
Description
Create a GUI Multi-Document-Interface window
Parameters
text
The text (ie Title) the window should display.
width
The width of the object.
height
The height of the object.
left
Optional; LEFT Position to create the object.
(-1 means center of screen)
top
Optional; TOP Position to create the object.
(-1 means center of screen)
style
Optional; The style of the window frame.
0 = None 1 = Fixed Single 2 = Fixed 3D 3 = Fixed Dialog 4 = Sizable (Default) 5 = FixedToolWindow
Return Value
Success: Returns the new GUI object.
Failure: Returns 0 if error occurs.
Example
// Create the MDI GUI $GUI = GUICreate("MDIWindow", "GUI", 800, 600); // Show the MDI GUI GUILoad( $GUI ); // Create a client window $TestGUI = GUICreate("Window", "GUI Client 1", 200, 200, 0, 0); GUIMDIParent($TestGUI, $GUI); GUILoad( $TestGUI ); // Create another client window $TestGUI2 = GUICreate("Window", "GUI Client 2", 200, 200, 240, 0); GUIMDIParent($TestGUI2, $GUI); GUILoad( $TestGUI2 ); // Keep the GUI running as long as long as the window is open While ( GUIStatus( $GUI ) ) DoEvents( );