Re: Web link in a windows form
- From: stcheng@xxxxxxxxxxxxxxxxxxxx (Steven Cheng[MSFT])
- Date: Thu, 14 Jun 2007 03:14:07 GMT
Hi Charles,
As Diego has suggested, in winform application you can use the "LinkLabel"
control to display a html hyperlink like element on form. However, you need
to hook its "LinkClicked" event and use code to programmatically launch the
default browser on the system. A very simple approach is using the
"System.Diagnostics.Process" class's "Start" method to open the target http
url. e.g.
=============
private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e)
{
Process.Start("http://www.asp.net");
}
=============
You can also manually get the default browser image path from the following
registry:
HKEY_CLASSES_ROOT\htmlfile\shell\open\command
and use Process class to execute that program with the http url as
parameter.
Hope this helps.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
.
- Follow-Ups:
- Re: Web link in a windows form
- From: Charles Zhang
- Re: Web link in a windows form
- References:
- Web link in a windows form
- From: Charles Zhang
- Re: Web link in a windows form
- From: Diego Jancic
- Web link in a windows form
- Prev by Date: enable/disable buttons based on ListView selection
- Next by Date: Re: Obtaining Server' Ethernet Card Mac Address
- Previous by thread: Re: Web link in a windows form
- Next by thread: Re: Web link in a windows form
- Index(es):