Core Function GUIMDICreate
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height> ) </pre> === Description === Create a GUI Multi-Document-Interface window === Parameters === ==== text ...") |
|||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height> ) | + | GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height>, <Style> ) |
</pre> | </pre> | ||
Line 23: | Line 23: | ||
==== height ==== | ==== height ==== | ||
Optional; The height of the object. | Optional; The height of the object. | ||
+ | |||
+ | ==== style ==== | ||
+ | Optional; The style of the window frame. | ||
+ | <pre> | ||
+ | 0 = None | ||
+ | 1 = Fixed Single | ||
+ | 2 = Fixed 3D | ||
+ | 3 = Fixed Dialog | ||
+ | 4 = Sizable (Default) | ||
+ | 5 = FixedToolWindow | ||
+ | </pre> | ||
=== Return Value === | === Return Value === |
Revision as of 16:21, 25 April 2012
GUICreate( "MDIWindow", <Text>, <Left>, <Top>, <Width>, <Height>, <Style> )
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.
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( );