link label (to PDF files)
-
I have some link labels on a tabpage which are supposed to link to some PDF files when clicked. How do I load and open the PDF files? Thanks!
-
I have some link labels on a tabpage which are supposed to link to some PDF files when clicked. How do I load and open the PDF files? Thanks!
Your browser should just open them.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Your browser should just open them.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
But how do I write the code? It's a linkclicked event.
-
But how do I write the code? It's a linkclicked event.
I was thinking of a web app. Process.Start will start the PDF viewer for you.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
I was thinking of a web app. Process.Start will start the PDF viewer for you.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
It works. But what if I want the document to be displayed in my window application (rather than opening an external application)?
-
It works. But what if I want the document to be displayed in my window application (rather than opening an external application)?
The obvious solution is a webbrowsercontrol, as that already knows how to show PDFs, and can be added to a form.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog