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

  1.     PCBASIC programs can be written for easy
  2.  
  3. translation into foreign languages. The menus, dialogs
  4.  
  5. and titles can all be defined in the resource file. Even
  6.  
  7. text messages, like these, can be put in the resource
  8.  
  9. file as string lists, such as this :
  10.  
  11.  
  12.  
  13.    $$ STR#,501,32
  14.  
  15.    2
  16.  
  17.      PCBASIC programs can be written for easy
  18.  
  19.      translation into foreign languages.
  20.  
  21.  
  22.  
  23. The strings are used in BASIC like DATA statements :
  24.  
  25.  
  26.  
  27.           RESTORE #501
  28.  
  29.           READ Msg$1,Msg$2,Msg$3,Msg$4
  30.  
  31.           ? Msg$1 : ? Msg$2 : ? Msg$3 : ? Msg$4
  32.  
  33.  
  34.  
  35. END
  36.  
  37.