Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
Re: Teil des Bildschirms löschen
7. Sep 2004, 11:24
Also statt
with Canvas do Polyline([Point(50, 200), Point(900, 200), Point(900, 700), Point(50 , 700), Point(50, 200)])
sollte wohl auch
with Canvas do Rectangle(50, 200, 901, 701)
ausreichen
löschen:
Delphi-Quellcode:
with Canvas do begin
Brush.Color := ...
FillRect(Rect(51, 201, 900, 700));
end;
(Angaben ohne Waffenschein)
$2B or not $2B
|
|
Zitat
|