hyperlinks

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
M

Mark Goldin

I am writing an application where I need to create hyperlinks to various
documents on the network.
Program will provide an OpenFileDialog for the user to select a file.
Then I need to show the selected path as a hyperlink.
What is a way of doing that?

Thanks.
 
Mark,

You will want to use the LinkLabel class. It is a control that provides
a hyperlink. You can then sign up for the LinkClicked event, which you can
perform an action on based on the link.

Hope this helps.
 
Back
Top