Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CURSOR BE GONE! Help!

Status
Not open for further replies.

ABQMark

Programmer
Aug 16, 2001
28
US
I am using FPW 2.6.

I have a popup message screen appears for 5 seconds in my program.
Although, the darn cursor flashes inside the screen (box)

Can someone please tell me how to disable the flashing cursor from appearing?


Thanks,

Mark Geer
 
If you are using INKEY() for the pause, use the 'HM' parameters:

nKey = INKEY(5, 'HM')

H = Hide cursor
M = Mouse click will count as keypress.

If not, what are you using for a pause?

Dave S.
 
HI
Just before the command POPUP SCREEN...what you have.. add the line of code
SYS(2002)
** This is equivalent to SET CURSOR OFF
And when you want to enable the cursor visibility.. put the line of code..
SYS(2002,1)
** This is equivalent to SET CURSOR ON
Hope this helps you :) ramani :-9
(Subramanian.G),FoxAcc, ramani_g@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top