Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
908 views

Using keyboard shortcuts with LinkLabel controls

I've noticed that keyboard-shortcuts assigned to linklabel controls in standard .NET WinForms forms are not functioning. I have created a LinkLabel control instance and assigned the Text property to ...
4
votes
1answer
52 views

WinForms: How to align a LinkLabel within a paragraph of text?

I have a label being populated with dynamic text. It is often a paragraph or so in length. I need to seamlessly integrate a LinkLabel at the end of this paragraph with the words "View more ..." . It ...
3
votes
4answers
413 views

Impersonation in .Net crashes when reading registry keys (LinkLabel SecurityException)

My app needs to impersonate a service account, which I do through a native-call to LogonUser. However, it appears that random components in the .Net library try to access registry keys the account ...
3
votes
2answers
439 views

Link Labels c# - displaying a list of them

I am trying to add a list of linked lables to a listview. I amd doing so like this foreach (String s in values) { LinkLabel label = new LinkLabel(); label.Text ...
3
votes
5answers
3k views

How do I make a TLinkLabel work in Delphi?

I put a TLinkLabel on my form, filled it in with a caption including a valid HTML link, and got some nice blue underlined text. When I ran the program, I expected it to invoke Firefox (my default ...
2
votes
4answers
168 views

New to C# - problems with link labels and functions

I am brand new to C# and have previously only written programs in JavaScript, so go easy on me ! I have written an "app launcher" program which reads a text file line by line. Each line is just a ...
2
votes
1answer
191 views

FlowLayoutPanel add to columns?

I have a flow layout panel, which i add a Dictionary of Linklables too Is it possible to add the two to the flow layout panel (as in 2 i mean key and value) next to each other as long as the ...
2
votes
2answers
974 views

Unhandled exception when Linklabel is clicked C# Winform

I am getting a strange unhandled exception when I click the linklabel which should open a form. I have tried to put the code in linklabel_click event handler in try-catch block, but I still get the ...
1
vote
1answer
68 views

Delphi: Change the font of links TLinkLabel

How do I change the font of the link TLinkLabel? For example, I want that the size of this link was 10 and the color blue: I'm trying to change this way: LinkLabel1.Font.Color:=clBlue; ...
1
vote
1answer
23 views

How to disable LinkLabel TabStop?

I place a LinkLabel on a form, by default it has TabStop=true. I change TabStop to false and close the form. Then open the form again - TabStop is true. What happens and how do I disable TabStop for ...
1
vote
1answer
30 views

New Linklabel when buton is pressed in webbrowser c#

I am making a web browser and I need to figure out something. When the user types into a text box and presses a button, it will make a new link label with that address that they typed into the text ...
1
vote
3answers
124 views

Add a string property to a visual c# linklabel?

I am totally new to visual C#. Whilst I can sort of manage console apps, I easily get lost when it comes to coding forms. I am currently making an "app launcher" which reads a text file line by ...
1
vote
3answers
193 views

working with controls(linklabels, treeview) in winforms

I have a Panel and two LinkLabels added on the panel and a treeview. now in the panel_Paint event i want that the linklabel colors become white and background color of treeview turns black. how do i ...
1
vote
3answers
546 views

issue with flow layout panel / link labels

i am setting text to a link label and adding these labels to a flow layout panel. It seems to be chopping off the ends of the link labels and as such i have labels with only 3/4's of the text. Does ...
1
vote
1answer
74 views

How do I open up a specific page in the windows help dialogue?

A lot of built in Windows applications will have links to pages in the windows help. Is there any way I can create a linklabel that will open up a Windows Help dialog to a specific page? ===EDIT=== ...
1
vote
1answer
173 views

Is there a way to overwrite the dotted selection/ highlight rectangle for a LinkLabel?

There are certainly some advantages in having a selection rectangle highlighting the currently selected element which also has the focus. However an element with padding can cause the rectangle to be ...
1
vote
2answers
210 views

get text of linklabel created at runtime

can someone please explain to me how i can get the Text property of the linklabel that i have created at runtime? I have tried: string str = e.Link.LinkData; ...but that just displays an empty ...
1
vote
4answers
779 views

LinkLabel needing more space than TextRenderer.MeasureText says

If I give TextRenderer.MeasureText some text to measure and width to use it will return the height needed to display that text. private static int CalculateHeight(string text, Font font, int width) { ...
1
vote
3answers
244 views

How to have a LinkClicked event using an ArrayList of LinkLabels in .NET

I'm working on a form that will display links to open different types of reports. This system has different types of users, so the users should only be able to see the links to the types of reports ...
0
votes
0answers
15 views

Use of DataRepeators

I am working on windows forms and use a feature data repeators for showing data from the database and its working good but i am confused in selecting item from data repeators like i show my name in ...
0
votes
1answer
43 views

How to use a link label to open a pdf in a web browser?

How to use a link label to open a pdf in a web browser ? I have a Windows Forms application and I am making a REST service request. The response contains the URL of PDF I want to open in a web ...
0
votes
2answers
112 views

difference between LinkLabel.Click and LinkLabel.LinkClicked event?

According to http://msdn.microsoft.com/en-us/library/system.windows.forms.linklabel.aspx, the LinkLabel class has both a Click event inherited from System.Windows.Forms.Control and a LinkClicked ...
0
votes
0answers
103 views

LinkLabel autosize is wrong with multiple Links

I'm relying on a LinkArea object's AutoSize property to automatically size itself to the text it's given. This renders fine when it has no LinkArea.Links added to it but then when I add a ...
0
votes
2answers
258 views

Link lable in Listview (Delphi)

how can i have a listview that its items contain links(direct us to html pages) ? Thank you
0
votes
1answer
97 views

How to embed a LinkLabel control in a WebBrowser control?

I am exploring the feasibility of embedding a LinkLabel control in a WebBrowser control. Could somebody tell me if is feasible or not? If it is feasible, then how to implement it. Looking for code ...
0
votes
1answer
157 views

Data Repeater, make linklabel open link in browser?

I have a datarepeater set up, i have a linklabel showing a link to a webpage. How do i go about making this open in a browser? I know i should be using Shell("c:/program files/internet ...
0
votes
2answers
628 views

Clickable link inside a text control like RichTextControl in WPF?

I want to be able to have some text clickable like in webpages in WPF. The control should have both non-functional text (for display) both also some of its parts as completely clickable. Say like ...
0
votes
5answers
3k views

Hyperlink a Email Address using LinkLabel in C#

I have made an about box that is meant to allow users to click the hyperlink email address which will take them to a microsoft outlook to be able to send the email to the email address, but i don't ...
0
votes
1answer
129 views

Make the background of a Label or LinkLabel transparent

Is it possible to make the background of a LinkLabel transparent? Setting the BackColor to the Transparent system color does not work. Matching the BackColor of the container is not suitable because ...
0
votes
1answer
363 views

Reduce Flicker of .NET FlowLayoutPanel

I'm clearing and adding multiple LinkLabel's to FlowLayoutPanel, every couple of seconds. It works fine, but flicker is quite noticeable. Is there any way to reduce it? I tried to set ...
0
votes
2answers
333 views

Link label is cut off at the buttom c#

In my C# winform application I have a link label. when the text in the link label is localize to chinese the text is cut off at the buttom by the line of the link label. Any idea?
0
votes
1answer
53 views

Is there a built-in way to replace the text of a link in a LinkLabel and have the other links automatically adjust so they stay on the same text?

In other words, if I have: var ll = new LinkLabel(); ll.Text = "Some links go here."; ll.Links.Add(0, 4); // Some ll.Links.Add(11, 2); // go Is there any method I can call to replace the text of ...
0
votes
1answer
2k views

WPF LinkLabel implementation strategy

I am attempting to create a LinkLabel control for WPF. Essentially, I'm going to create the LinkLabel from a TextBlock and handle MouseEnter, MouseLeave, and MouseLeftButtonUp events. In the back end ...
0
votes
2answers
2k views

Argument exception - parameter is not valid ( LinkLabel on WinForm )

I wrote a Win Forms app to test how a LinkLabel class works. It appears to be fine until I click on the changed LinkLabel. The Form1.cs code is below: using System; using ...
-1
votes
2answers
117 views

Is there a dynamic-creation-friendly LinkLabel Alternative?

I'm trying to dynamically create a link from a Windows Form to our website when certain conditions are met (it's a warning message with further information in our online manual). Currently I'm ...
-1
votes
1answer
299 views

Winform/Program and how to write class 1, class 2, class 3, class 4 in array to linklabels?

So my program works like this: using winforms, user enters ID number, using an array, based on the right id number, that student information and class schedule outputs in a message box! My question ...