Registriert seit: 7. Aug 2008
8 Beiträge
|
Re: Drucken der Programm Oberfläche
7. Aug 2008, 12:01
hab das nun so gelöst....
procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
PrintDialog1.Execute;
Form1.PrintScale := poPrintToFit;
Form1.Print;
end;
kann ich das nun noch auf querformat umstellen oder geht das nur über PrinterSetupDialog?
|