Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ps_Current = new PrinterSettings();
  2. ps_Current.PrinterName = cbPrinters.Text;
  3.  
  4. ps_Current.Copies = (short)seAantalKopieen.Value;
  5.  
  6. PrintDialog PD = new PrintDialog();
  7. PD.PrinterSettings = ps_Current;
  8. PD.ShowDialog();
  9.  
  10. ps_Current = PD.PrinterSettings;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement