Hi all, I am using the following code to check cursor position.
001 5 PROMPT "" ; PRINT @(-1) 002 EXECUTE "MOUSE.ON" 003 PRINT @(10,24):"CLICK ON SCREEN ": 004 INPUT XY 005 IF XY = "END" THEN EXECUTE "MOUSE.OFF" ; STOP 006 PRINT CHAR(27):'[6N' 007 INPUT DUMMY 008 PRINT XY 009 X=FIELD(XY,';',2) 010 Y=FIELD(XY,";",3) 011 PRINT ; PRINT "COL= :":X 012 PRINT "ROW= :":Y 013 INPUT DUMMY 014 GOTO 5 If I double-click, the program returns the row and column results correctly, but with a single click the FIELD results are null. What am I missing?? All assistance will be appreciated. Marc Zitcer -- -- IMPORTANT: T24/Globus posts are no longer accepted on this forum. To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en --- You received this message because you are subscribed to the Google Groups "jBASE" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
