How to display bmp file on the form without the image component?

    2 answers 2

    like this:

    var pic:Tbitmap; begin pic:=Tbitmap.create; pic.Loadfromfile('c:\pic.bmp'); form.canvas.draw(pic,x,y); pic.free; end 

      Bring it to the canvas of the desired component, for example, a form