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 MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by valmierietis

  1. valmierietis

    Flickering TImage component when drawing on it

    Wow, thanks, this `DoubleBuffered:=true;` helped instantly, I had to do nothing else! Thanks a lot!
  2. valmierietis

    Flickering TImage component when drawing on it

    Hi! I want to draw rectangles on TImage component imgMain, this is it's `onMouseMove` even: procedure TfrmMain.imgMainMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin imgMain.Canvas.Pen.Color:=clWhite; imgMain.canvas.Rectangle(X-10,Y-10,X+10,Y+10); end; I wrote in at...

Part and Inventory Search

Back
Top