I have a winfrom GUI that has a "help" context menu. When clicked, I would like to open the user guide for the application. The manual is a pdf file that is stored in the application resources.
Question: How do I open this for the user?
The code I'm working with
System.Diagnostics.Process process = new System.Diagnostics.Process(); bool adobeInstall = false; RegistryKey adobe = Registry.LocalMachine.OpenSubKey("Software").OpenSubKey("Adobe"); if (adobe != null) { RegistryKey acroRead = adobe.OpenSubKey("Acrobat Reader"); if (acroRead != null) adobeInstall = true; } if (adobeInstall == true) {
source share