Core Function GUIMDICreate
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height> ) </pre> === Description === Create a GUI Multi-Document-Interface window === Parameters === ==== text ...")
Newer edit →
(Created page with "<pre> GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height> ) </pre> === Description === Create a GUI Multi-Document-Interface window === Parameters === ==== text ...")
Newer edit →
Revision as of 08:19, 28 March 2012
GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height> )
Contents |
Description
Create a GUI Multi-Document-Interface window
Parameters
text
The text (ie Title) the window should display.
left
LEFT Position to create the object.
top
TOP Position to create the object.
width
Optional; The width of the object.
height
Optional; The height of the object.
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( );