Rod:
Thanks for staying with me when i was ready to give up. Here's what the Solution Explorer looks like in my little test project:
Solution 'TestPDFProject'(1 project)
Solution Items
TestPDFProject
My Projecrt
Form1.
vb
My code looks like this:
Try
MessageBox.Show("Operations Guide.pdf exists: " & System.IO.File.Exists("Operations Guide.pdf"))
System.Diagnostics.Process.Start("Operations Guide.pdf")
Catch nullreference As NullReferenceException
MsgBox(nullreference.ToString)
End Try
In my first test the reference to the PDF was shown in the top(Solution) section, in the second test it was added to the bottom test. It was not shown in both sections.
The results were the same in both tests, The message box indicate that the file did not exist . The program throws an error before it gets to "Catch".
Thanks again, Rod for trying to help.
Milt