A quite complicated problem

2003-03-04 Thread liuchoi
I would like to let the user to select a particular area in a graph screen (The graph screen is now exists). Now I have made a feature that enables the user to "drag" a dotted rectangle using WinDrawGrayRectangleFrame(), like the one in windows for selecting icons. I tried to use WinSaveBits() when

Re: A quite complicated problem

2003-03-04 Thread Sean Charles
On Tuesday, March 4, 2003, at 05:43 PM, liuchoi wrote: I would like to let the user to select a particular area in a graph screen (The graph screen is now exists). Now I have made a feature that enables the user to "drag" a dotted rectangle using WinDrawGrayRectangleFrame(), like the one in windo

Re: A quite complicated problem

2003-03-04 Thread Dennis Leas
ginal Message - From: "Sean Charles" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 1:28 PM Subject: Re: A quite complicated problem > > On Tuesday, March 4, 2003, at 05:43 PM, liuchoi wrote: > > > I would

Re: A quite complicated problem

2003-03-05 Thread Peter Hebert
In my experience, it's easier/safer when implementing unique pen behavior on a form or even within a gadget to "usurp" the event loop on the penDownEvent, rather than process penDown, penMove, and penUp in the main form's event loop and maintain all of that state between events. I personally find I