C# PDF Viewer Tutorial
Please rate, comment, and subscribe!
This is a video on how to create a PDF viewer in Microsoft Visual Studio C#
The download can be found here:
http://www.microsoft.com/express/Down...
Here is the code in case you missed it:
OpenFileDialog open = new OpenFileDialog(); open.Title = "Open"; open.Filter = "All Files|*.*"; try { if (open.ShowDialog() == System.Windows.Forms.DialogResult.OK) { axAcroPDF1.LoadFile(open.FileName); } } catch (ArgumentException ex) { MessageBox.Show(ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } catch (Exception ex) { MessageBox.Show(ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); }
Video Length: 08:20
Uploaded By: SonicStormCaller
View Count: 41,615