You are not logged in.
Pages: 1
any example ?
nevermind, i used ClearHeaders and ClearFooters.
ok it's working, richedit too.
one more question: how to select printer before printing ?
var
printDialog : TPrintDialog;
MyPrinter: TPrinter;
TGDIP: TGDIPages;
...
TGDIP := TGDIPages.Create(Form1);
...
printDialog := TPrintDialog.Create(Form1);
MyPrinter := Printer;
if printDialog.Execute then
begin
PrintPages(1, 1);
end;
Its working too
Hi,
I tried to use taJustified property with the Calibri font but it didn't work. When I changed font to Arial, it works fine, is there any solution ?
And one more question: I tried to use 2 words with different font sizes in one line. What is the best way to do it ?
Andrew
Pages: 1