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

  1. INTERNAL FUNCTION  InitProgram   ()
  2. '
  3. '
  4. ' ############################
  5. ' #####  InitProgram ()  #####
  6. ' ############################
  7. '
  8. ' Add code to this function to initialize anything your program needs
  9. ' to initialize before CreateWindows() creates your programs windows.
  10. ' For initialization after CreateWindows(), add code to InitWindows().
  11. '
  12. ' Do not delete this function, leave it empty if not needed.
  13. '
  14. FUNCTION  InitProgram ()
  15.  
  16. END FUNCTION