WWW link on win form?

  • Thread starter Thread starter DzemalTipura
  • Start date Start date
D

DzemalTipura

How can I put WWW link on windows form so user can click on in and go to
that page via external default browser?

Thx you

--

______________________________________________________________________________
Dzemal Tipura, MCP, MCAD
Wizard Computers d.o.o.
(e-mail address removed)
GSM: + 387 61 467 367
 
Use a LinkLable and in its LinkClicked event, use the following code

System.Diagnostics.Process.Start("www.somewebsite.com");

---------
- G Himangi, Sky Software http://www.ssware.com
Shell MegaPack : GUI Controls For Drop-In Windows Explorer like Shell
Browsing Functionality For Your App (.Net & ActiveX Editions).
EZNamespaceExtensions.Net : Develop namespace extensions rapidly in .Net
EZShellExtensions.Net : Develop all shell extensions,explorer bars and BHOs
rapidly in .Net
 
Back
Top