home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 August / PCWorld_2000-08_cd.bin / Software / TemaCD / xbasic / xbpro.exe / xb / xxx / create.xyz < prev    next >
Text File  |  1995-10-09  |  585b  |  19 lines

  1. INTERNAL FUNCTION  CreateWindows ()
  2. '
  3. '
  4. ' ##############################
  5. ' #####  CreateWindows ()  #####
  6. ' ##############################
  7. '
  8. ' GuiDesigner puts code in CreateWindows() to create, initialize, display
  9. ' every window you design graphically.  Don't modify this function unless
  10. ' absolutely necessary - GuiDesigner needs to read and update it at times.
  11. '
  12. ' CreateWindows() usually should not be executed when compiled as library.
  13. ' Start CreateWindows() with "IF LIBRARY(0) THEN RETURN" to assure this.
  14. '
  15. FUNCTION  CreateWindows ()
  16. '
  17.     IF LIBRARY(0) THEN RETURN
  18. END FUNCTION
  19.