1
I am creating a program in which at a certain point it needs to print a budget...
using(PrintDocument print = new PrintDocument())
using(PrintPreviewDialog dialog = new PrintPreviewDialog())
{
print.PrintPage += Print_PrintPage;
dialog.Document = print;
dialog.ShowDialog();
}
The problem is that it always prints in high quality, delaying in printing and spending much more ink than necessary.
Include your code instead of print and include the snippet of the command you are printing.
– Leandro Angelo
From what I’ve searched above, this Eventhandler "Printpage" has a property: Defaultpagesettings.PrinterResolution.Kind
– M. Bertolazo
thank you very much, ended up solving the problem.
– JoinvilleCar
@Joinvillecar check if my edits are correct and check the answer that solved your problem.
– Leandro Angelo
@Leandroangelo thanks for the correction, it’s the first time I use the site.
– JoinvilleCar