Hi
wie kann ich ein Bitmap auf Form1 malen
Das Bild soll aber nach dem Malen beim MouseMove nicht weg gelöscht ?
Delphi-Quellcode:
var
bmp:=TBitmap;
begin
bmp:=TBitmap.Create;
bmp.LoadFormfile('test.bmp')
// ... wie male ich nun das Bitmap auf Form1
bmp.free;
end;