home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / DBMS9101.ZIP / DESQ_A.JAN next >
Encoding:
Text File  |  1990-11-21  |  306 b   |  14 lines

  1. LISTING A:
  2.  
  3. * Writing messages to an x,y coordinate using WIN_AtSay():
  4. * Using the Clipper API
  5. winhan = WIN_Me()
  6. WIN_AtSay(winhan, 5,8, "Hello World")
  7.  
  8. (* Using the Pascal API: *)
  9. winhan = WIN_Me;
  10.  
  11. (* Now  move the cursor *)
  12. WIN_Cursor(WinHan, row, col);
  13. WIN_sWrite(WinHan,  'Hello World' );
  14.