Hi everyone, I got some problem this week. I don't know the
coding for "Linklabel" in C#.net. In ASP.net, I use it
"Response.Redirect" and "Server.Transfer" and I also can use
hyperlink. When offline I use "linklabel", Now I still write
by "System.Dianogstic", It still showing error and can't
reach my dedicated page(Means design page). So if anyone
know it, please share your technical help. Thanks (Horace
Trever)

Answer Posted / kishore ganti

Add a LinkLabel to a Form manually
The MSDN page for the LinkLabel control has the following
example showing how to add a LinkLabel to a Form.
private LinkLabel linkLabel1;

public Form1()
{
CreateMyLinkLabel();
}

public void CreateMyLinkLabel()
{
// Create the LinkLabel.
linkLabel1 = new LinkLabel();

// Configure the LinkLabel's size and location. Specify
that the
// size should be automatically determined by the content.
this.linkLabel1.Location = new System.Drawing.Point(34,
56);
this.linkLabel1.Size = new System.Drawing.Size(224, 16);
this.linkLabel1.AutoSize = true;

// Configure the appearance.
// Set the DisabledLinkColor so that a disabled link will
show up against
// the form's background.
this.linkLabel1.DisabledLinkColor =
System.Drawing.Color.Red;
this.linkLabel1.VisitedLinkColor =
System.Drawing.Color.Blue;
this.linkLabel1.LinkBehavior =
System.Windows.Forms.LinkBehavior.HoverUnderline;
this.linkLabel1.LinkColor = System.Drawing.Color.Navy;

this.linkLabel1.TabIndex = 0;
this.linkLabel1.TabStop = true;

// Add an event handler to do something when the links
are clicked.
this.linkLabel1.LinkClicked +=
new LinkLabelLinkClickedEventHandler
(this.linkLabel1_LinkClicked);

// Identify what the first Link is.
this.linkLabel1.LinkArea = new
System.Windows.Forms.LinkArea(0, 8);

// Identify that the first link is visited already.
this.linkLabel1.Links[0].Visited = true;

// Set the Text property to a string.
this.linkLabel1.Text = "Register Online. Visit
Microsoft. Visit MSN.";

// Create new links using the Add method of the
LinkCollection class.
// Underline the appropriate words in the LinkLabel's
Text property.
// The words 'Register', 'Microsoft', and 'MSN' will
// all be underlined and behave as hyperlinks.

// First check that the Text property is long enough to
accommodate
// the desired hyperlinked areas. If it's not, don't add
hyperlinks.
if (this.linkLabel1.Text.Length >= 45)
{
this.linkLabel1.Links[0].LinkData =
this.linkLabel1.Text.Substring(0, 8);
this.linkLabel1.Links.Add(24, 9, "www.microsoft.com");
this.linkLabel1.Links.Add(42, 3, "www.msn.com");
// The second link is disabled and will appear as red.
this.linkLabel1.Links[1].Enabled = false;
}

this.Controls.Add(linkLabel1);
}

private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e)
{
// Determine which link was clicked within the LinkLabel.
this.linkLabel1.Links[linkLabel1.Links.IndexOf
(e.Link)].Visited = true;

// Display the appropriate link based on the value of the
// LinkData property of the Link object.
string target = e.Link.LinkData as string;

// If the value looks like a URL, navigate to it.
// Otherwise, display it in a message box.
if (null != target && target.StartsWith("www"))
{
System.Diagnostics.Process.Start(target);
}
else
{
MessageBox.Show("Item clicked: " + target);
}
}




try this one if it relates

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Program ended with error or warning, return code: 4

13691


In .net how many error will occur?

2420