Home > comp > gb.qt > form 
 en fr de es it nl pl pt pt_BR mk sq ca hu tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Form (gb.qt)
The parent Třída of every form of a program.

By default, a form is its own Události observer. That means the all event raised by Form objekt are catched by event handlers defined in the form source code.

Symbols
This class inherits Window.
Constants 
Above  Below  Fixed  None  Normal  Resizable   
Properties  Methods  Events 
Action  Arrangement  AutoResize  BackColor  Background  Border  Caption  Children  ClientH  ClientHeight  ClientW  ClientWidth  ClientX  ClientY  Closed  Controls  Cursor  Design  Drop  Enabled  Expand  Font  ForeColor  Foreground  FullScreen  H  Handle  Height  Icon  Id  Ignore  Left  Mask  Maximized  Menus  Minimized  Modal  Mouse  Name  Next  Padding  Parent  Persistent  Picture  Previous  ScreenX  ScreenY  SkipTaskbar  Spacing  Stacking  Sticky  Tag  Text  Title  ToolBox  ToolTip  Top  TopLevel  TopOnly  Visible  W  Width  Window  X  Y    Center  Close  Delete  Drag  Find  Grab  Hide  Lower  Move  MoveScaled  Raise  Refresh  Reparent  Resize  ResizeScaled  SetFocus  Show  ShowDialog  ShowModal    Activate  Arrange  Close  DblClick  Deactivate  Drag  DragMove  Drop  Enter  GotFocus  Hide  Icon  Insert  KeyPress  KeyRelease  Leave  LostFocus  Menu  MouseDown  MouseDrag  MouseMove  MouseUp  MouseWheel  Move  Open  Resize  Show  Title   

This class can be used like an object by creating a hidden instance on demand.
This class is creatable.
This class acts like a read-only array.

Static methods 
Load  Main   

Example


PUBLIC SUB btnOpenForm1_Click()
DIM newform AS Form
' here an existing, in IDE created form is moved around the screen Form1.Show
' Activate, Display the form Form1 the first time
WAIT 1.5
Form1.X = 20
Form1.Y = 200 ' move it arounnd
WAIT 1.5
Form1.X = 90
Form1.Y = 150 ' Move it again

' Here a new created form is displayed
newform = NEW Form
newform.x = 180
newform.Y = 180
newform.Caption = "Another created Form"
newform.Show

END