In VB.NET how do you open a word/PDF doc? I used to have the code and I remember it was very short.
+4
A:
Assuming there is an app registered to handle .PDF or .DOC files, you could use the following:
System.Diagnostics.Process.Start("C:\path\filename.pdf") System.Diagnostics.Process.Start("C:\path\filename.doc")
devSolo
2009-05-04 22:13:19