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