Re: need help finding bug (win32)
- Posted by "Brian K. Broker" <bkb at CNW.COM> Jul 28, 1999
- 444 views
Thanks David (I figured you'd be the one to come to my rescue.) Moving the copyBlt into the "if event = LEFT_DOWN..." fixes my problem. I will probably be implementing your double buffering suggestion but I thought I'd share the problem in case it wasn't my fault. I just have to make sure I stick new code into the right places... 8^) On Wed, 28 Jul 1999, Cuny, David wrote: > procedure onMouse_LineWin( integer event, integer x, integer y ) > integer paintsize > sequence extent > > if event = LEFT_DOWN or event = RIGHT_DOWN then > <snip> > > copyBlt( Buffer, 0, 0, LineWin ) > >>> end if > end procedure > onMouse[LineWin] = routine_id("onMouse_LineWin") >