When I add www.stackoverflow.com into my richtextbox and run the program it is shown in blue and as a hyperlink yet when I click it nothing happens. How can I fix this?
Thanks
|
When I add www.stackoverflow.com into my richtextbox and run the program it is shown in blue and as a hyperlink yet when I click it nothing happens. How can I fix this? Thanks |
|||
|
|
Personally, I wouldn't pass "IExplore.exe" in as a parameter to the Process.Start call as Microsoft advise as this presupposes that it is installed, and is the user's preferred browser. If you just pass the url to process start (as per below) then Windows will do the right thing and fire up the user's preferred browser with the appropriate url.
|
|||||||||||||||
|
|
RichTextBox class allows you to customize its behavior when user clicks the hyperlink. Add an event handler for the RichTextBox.LinkClicked event
|
|||
|
|
|
Is |
|||
|
|
|
You should make sure that |
|||
|
|