Registriert seit: 13. Jul 2003
505 Beiträge
Delphi 7 Professional
|
Re: Problem mit Canvas und DelphiX
4. Okt 2003, 12:57
Ich mach das immer so:
Delphi-Quellcode:
with DXDraw1.Surface.Canvas do
begin
Brush.Style := bsClear;
with Font do begin
Name := 'Arial';
Color := clLime;
Size := 50;
Textout(10, 10, 'HALLO');
end;
Release;
end;
Und das klappt hervorragend (Ich habe auch Delphi 7)!
|