I thought, I could save an restore the settings that the user has made in the printpreview-dialog like this:
if FileExists (PrintOneFile) then begin
FB.ievpic.IO.PrintPreviewParams.LoadFromFile(PrintOneFile);
end;
FB.ievpic.IO.DoPrintPreviewDialog(iedtDialog);
FB.ievpic.IO.PrintPreviewParams.SaveToFile(PrintOneFile);
But it does not work (even when I load an existing settings file, the Dialog has standard-Settings). What is the right way?
HS