From http://itvdn.com/ru/blog/article/c-sharp-how-to-open-pdf-with-c-sharp
// Display the PDF file. private void Form1_Load(object sender, EventArgs e) { string filename = Application.StartupPath; filename = Path.GetFullPath( Path.Combine(filename, ".\\Test.pdf")); wbrPdf.Navigate(filename); }