home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Languages / PC Basic ƒ / PCBASIC MPW version / PCBASIC Demo / PCBASICDemo.b.o / PCBASICDemo.b.o.rsrc / STR#_503.txt < prev    next >
Encoding:
Text File  |  1992-02-22  |  783 b   |  37 lines

  1.     In PCBASIC, the menus are created from resources.
  2.  
  3. Other BASIC implementations use BASIC statements to create
  4.  
  5. every item of every menu. With PCBASIC, the menus are
  6.  
  7. defined with a resource compiler or editor. Of course the
  8.  
  9. program can change any menu item with BASIC statements. The
  10.  
  11. menu items can be enabled, disabled, inhibited, or marked
  12.  
  13. with a check mark or any other character.
  14.  
  15.  
  16.  
  17.     PCBASIC can compile many programs written for the
  18.  
  19. IBM‚Ñ¢ PC or compatibles. Those programs may use the function
  20.  
  21. keys on those machines. BASICA statements such as these,
  22.  
  23.  
  24.  
  25.       KEY (1) ON : ON KEY(1) GOSUB 100
  26.  
  27.  
  28.  
  29. are compiled without change. The function keys become menu
  30.  
  31. items. They can be grouped into any number of menus, which
  32.  
  33. can be arranged in any order on the menu bar.
  34.  
  35. END
  36.  
  37.