Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - Norton Guide http://www.X-Hacker.org [^^Up^^] [Menu] [About The Guide]
 WMDIApp                MDI Application class
 ----------------------------------------------------------------------------
 WMDIApp
 MDI Application class
 ----------------------------------------------------------------------------
 
 Properties
 MDI            A logical (.T.) indicating this is an MDI application
 Modal          A logical (.F.) indicating that dialogs are by default modeless
 
 Methods
 WMDIApp:AddDialog()   Add a modeless dialog to the application
 WMDIApp:Create()      Perform the final creation step of an application
 WMDIApp:DelDialog()   Remove a modeless dialog from the application
 WMDIApp:Exec()        Execute the application
 
 Inherits From
 WAppBase
 
 Inherited By
 Nothing.
 
 Description
 This class defines an MDI application.  Although non-MDI
 applications can have multiple windows open at once,
 applications which may have several modeless windows active at
 a time should normally be MDI applications.  Simpler
 applications may use the WApp class.
 
 Example
 #include "windows.ch"
 #include "commands.ch"
 
 function main()
 local     oApp, oWnd
 
 CREATE APPLICATION oApp       ;
      MDI                      ;
      WINDOW oWnd              ;
      TITLE "Clip-4-Win example using the WMDIApp class"
 
 return nil
 
 See Also  (press Enter)

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson