Hallo
ich habe einen Code, der auf fir Form1 zeichnet
Ich habe nun ein Tabsheet auf Form1
Delphi-Quellcode:
end;
Form1.Canvas.Draw(0, 0, bm);
Form1.Caption := IntToStr(round(i / count * 100)) + '%';
Application.ProcessMessages;
if Application.Terminated then break;
end;
Form1.Canvas.Draw(0, 0, bm2);
Form1.Caption := 'done';
bm1.Destroy; bm2.Destroy; bm.Destroy;
end;
Wie kann ich auf Tabsheet statt auf Form zeichnen ?
Mein Versuch war einfach so :
Delphi-Quellcode:
//Form1.Canvas.Draw
Form1.Tabsheet1.Canvas.Draw // error hier : Undeclared canvas !