private void statprev_Click(object sender, EventArgs e) { using (PrintTemplate pt = new PrintTemplate()) { pt.Font = printFont; pt.PrintStat(vehicles, activeDate, pageSettings, false); } }
private void printBtn_Click(object sender, EventArgs e) { using (PrintTemplate pt = new PrintTemplate()) { pt.Font = printFont; pt.PrintCars(vehicles, fullRepo, activeDate, pageSettings, false); } }