home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / PASCAL / MISCTI10.ZIP / TI244.ASC < prev    next >
Encoding:
Text File  |  1988-04-18  |  675 b   |  25 lines

  1. PRODUCT : TURBO GRAPHIX TOOLBOX     NUMBER : 244
  2. VERSION : 1.0xx
  3.      OS : PC-DOS
  4.    DATE : March 13, 1986
  5.  
  6.   TITLE : USING WHEREX AND WHEREY 
  7.  
  8. The  functions  WhereX  and WhereY do not  return  proper  values 
  9. from  a program using the Turbo Graphix Toolbox.   The  following 
  10. functions  can be included in your programs to return the  proper 
  11. values  for WhereX and WhereY.   In order for these functions  to 
  12. return  correct  values it is necessary for your program to  call 
  13. either GoToXY or InitGraphics before using them.
  14.  
  15. function WhereX : integer;
  16. begin
  17.   WhereX := XTextGlb;
  18. end;
  19.  
  20. function WhereY : integer;
  21. begin
  22.   WhereY := YTextGlb;
  23. end;
  24.  
  25.