Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. SaveFileDialog opf2 = new SaveFileDialog();
  2. opf2.Filter = "HTML (Результат) (*.html)|*.html";
  3. opf2.ShowDialog();
  4.  
  5. using (var converter = new Converter())
  6. {
  7. converter.ConvertToPdf(Convert.ToString(opf2.FileName), Convert.ToString(opf2.FileName + ".pdf"));
  8. }
  9. // Show the PDF
  10. System.Diagnostics.Process.Start(opf2.FileName + ".pdf");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement