Tagged Questions

Label is a placeholder for text and other UI elements

learn more… | top users | synonyms

18
votes
9answers
14k views

Multiple colors in a C# .NET label

I'm looking for a way to display multiple colors in a single C#/.NET label. E.g the label is displaying a series of csv separated values that each take on a color depending on a bucket they fall ...
16
votes
1answer
8k views

Newline in a WPF-label?

How can I add a newline in the text of a label in WPF such as the following? <Label>Lorem ipsum</Label>
14
votes
5answers
2k views

Algorithm for nice graph labels for time/date axis?

I'm looking for a "nice numbers" algorithm for determining the labels on a date/time value axis. I'm familar with Paul Heckbert's Nice Numbers algorithm. I have a plot that displays time/date on the ...
13
votes
3answers
562 views

Is there any way to disable the “double-click to copy” functionality of a .NET label?

This is really annoying. I'm using the label as part of a list item user control, where the user can click it to select the list item and double-click it to rename it. However, if you had a name in ...
13
votes
6answers
7k views

Html label tag and ASP.NET

What is the best way to use the <label> tag within an ASP.NET application? I want it to be XHTML valid, accessible and usable. I understand the optimal way is this: <label ...
12
votes
4answers
3k views

Android Launcher label vs. activity title

This question has been asked before - but with no satisfying answer at all! So I'm trying it again. I want to give my application launcher icon (the one that is displayed on the startscreen!) a ...
12
votes
9answers
12k views

Find html label associated with a given input

Let's say I have an html form. Each input/select/textarea will have a corresponding <label> with the for attribute set to the id of it's companion. Given an input element in javascript — ...
11
votes
4answers
256 views

Intelligent point label placement in R

1) Is there any R library/function which would implement INTELLIGENT label placement in R plot? I tried some but they are all problematic - many labels are overlaping either each other or other points ...
11
votes
4answers
2k views

C# - Enter “&” symbol into a text Label?

How would one enter special characters into a Label in C# (WinForms)? If you try to write a "&" into a label you'll get a sort of underscore instead.. So what's the C# equivalent of "&"? ...
11
votes
4answers
10k views

WPF Binding only part of a label

How would one achieve mixing bound values with constant text in a WPF bound control? For example, say I have a form displaying orders, and I want a label that displays text like "Order ID 1234". ...
9
votes
4answers
10k views

Vertical (rotated) label in Android

I need 2 ways of showing vertical label in Android: Horizontal label turned 90 degrees counterclockwise (letters on the side) Horizontal label with letters one under the other (like a store sign) ...
8
votes
4answers
238 views

Address of labels (MSVC)

We are writing a byte-code for a high-level compiled language, and after a bit of profiling and optimization, it became clear that the current largest performance overhead is the switch statement ...
8
votes
2answers
2k views

How can I control the width of a label tag?

The label tag doesn't have the property 'width', so how should I control the width of a label tag? Regards Javi
8
votes
1answer
5k views

jQuery Flot data/axis labels on top of graph

Is there a way to overlay the x-axis and y-axis numeric labels onto a jQuery Flot graph. So, I want the labels to not be outside, next to the graph, but on top of the graph itself. The following ...
8
votes
9answers
2k views

C Programming: address of a label

I know everyone hates gotos. In my code, for reasons I have considered and am comfortable with, they provide an effective solution (ie I'm not looking for "don't do that" as an answer, I understand ...
8
votes
3answers
2k views

Right-aligned labels in WinForms

The most obvious way to right-align a Label in WinForms doesn't work: setting anchor to Top/Bottom Right and TextAlign to TopRight. If the text changes the label's Left coordinate remains unchanged ...
8
votes
13answers
807 views

Refactoring away labeled loops

After I was convinced that labeled breaks/continues are a total "nono" over here, I need help to remove the label out of my code. I have a square matrix and a vector that has the same length. The ...
7
votes
3answers
126 views

Naming Loops in Python

I recently read this question which had a solution about labeling loops in Java. I am wondering if such a loop-naming system exists in Python. I have been in a situation multiple times where I do ...
7
votes
1answer
436 views

R: Confusion between factor levels and factor labels

There seems to be a difference between levels and labels of a factor in R. Up to now, I always thought that levels were the 'real' name of factor levels, and labels were the names used for output ...
7
votes
9answers
9k views

How to create a label inside an <input> element?

I would like to insert a descriptive text inside an input element that disappers when the user click on it. Example I know it is a very common trick, but I do not know how to do that.. What is the ...
7
votes
5answers
7k views

Why “The system cannot find the batch label specified” is thrown even if label exists?

While running a batch file in Windows XP I have found randomly occuring error message: The system cannot find the batch label specified name_of_label Of course label existed. What causes this error? ...
7
votes
5answers
4k views

Formatting text in WinForm Label

Is it possible to format certain text in a WinForm Label instead of breaking the text into multiple labels? Please disregard the HTML tags within the label's text; it's only used to get my point out. ...
6
votes
1answer
67 views

How are labels used with statements that are not a loop?

According to the ECMAScript 5.1 spec, section 12.12, any statement can be labelled - and in a brief test my browser accepted a label before any statement. The spec also states that labels are used ...
6
votes
10answers
373 views

how can we go out from 4 inner for loops?

Hi I am beginner in java and my program has 4 for loops: my program works like this that if b is true ,the element will be removed from pointList and n will be n-- and the I want to go out from all ...
6
votes
1answer
820 views

How can I adjust 3-D bar grouping and y-axis labeling in MATLAB?

I have a 3D plot like this: On the y-axis of the plot, each group of three bars refers to the same parameters: x1, x2, x3. I would like to have a spacing on the y-axis for each group of three bars, ...
6
votes
1answer
804 views

Auto clip and append dots in WPF label

How can I auto clip text and append dots on a label if the current text doesn't fits to its width in WPF? e.g.
6
votes
3answers
786 views

Is using labels in Perl subroutines considered a bad practice?

I find that using labels inside Perl subroutines, to break from multiple loops, or to redo some parts with updated variables, very helpful. How is this coding style seen by the community? Is using ...
6
votes
5answers
4k views

C struct initialization using labels. It works, but how? Documentation?

I found some struct initialization code yesterday that threw me for a loop. Here's an example: typedef struct { int first; int second; } TEST_STRUCT; void testFunc() { TEST_STRUCT test = { ...
6
votes
3answers
6k views

Underline Label in WPF, using styles

I have the following style: <Style x:Key="ActionLabelStyle" TargetType="{x:Type Label}"> <Setter Property="Margin" Value="10,3" /> <Setter Property="Padding" Value="0" /> ...
6
votes
15answers
2k views

Is it possible to exit a for before time in C++, if an ending condition is reached?

I want to know if it is possible to end a for loop in C++ when an ending condition (different from the reacheing right number of iterations) is verified. For instance: for (int i = 0; i < maxi; ...
5
votes
2answers
94 views

break and label in java

I have a code like this: if(condition1) { break MyLabel; } while(true) { //some code here MyLabel: if(condition2) break; //more code here } ...
5
votes
2answers
654 views

How do I label different curves in Mathematica?

How can I label each of these lines separately : Plot[{{5 + 2 x}, {6 + x}}, {x, 0, 10}]
5
votes
3answers
953 views

Is it possible to add title to charts?

I want to add a title to a chart, like in the gauge example or a pie chart. I want to display a title under or on top of the chart. Is this possible? I've been looking and can't find anything about ...
5
votes
4answers
272 views

PHP variable / function / class names using special characters

I understand that the underscore _ is an acceptable character for naming variables / functions / classes etc. However I was wondering if there are any other special characters which can be used. I ...
5
votes
4answers
210 views

Clicking on a Label to focus another control in WPF

I have taken a break from WPF for about a year and I am stumped by this simple problem. I swear there was an easy way to tell a label to focus to another control when it is clicked. ...
5
votes
3answers
1k views

Label grow from right to left

I have a label on my form which is on the right of the form. This label loads a dynamic text. Sometimes the text that it loads is too long and the text crosses the border of the form, that is some of ...
5
votes
3answers
684 views

Find outlines/ borders of label image in MATLAB

I was wondering if there’s an easy way to convert a label matrix into a matrix where you have lines anywhere two labeled regions meet and zeros elsewhere so that you could basically superimpose the ...
5
votes
6answers
2k views

How can I wrap text in a label using WPF?

I have a TextBox and a Label. After clicking a button, I execute the following code: label1.Content = textbox1.Text; My question is, how do I enable text wrapping of the label? There may be too ...
5
votes
2answers
603 views

how to make an image large enough to avoid tick label overlapping?

Assume that the data X has size 1000 *1000. X is displayed using the command: imagesc(X); and all the rows are labeld using: set(gca, 'YTickLabel', somelabels); Although the data X are properly ...
5
votes
5answers
315 views

Re-Inventing The Label Control

I need to reinvent/recreate the Label Control from scratch to add my own mojoness to it. Yes, I know what you're thinking (and if you're not thinking that, shouldn't you be?). Can somebody point me ...
5
votes
1answer
1k views

iPhone table cell label misaligned

Similar to this previous question, I am having a problem with text alignment in my table cells. All the text is shifted up by a few pixels. I am not using custom cells; I am using regular ...
5
votes
2answers
4k views

rotating axis labels in R

In R, how do I make a (bar)plot's y axis labels parallel to the X axis instead of parallel to the Y axis?
5
votes
4answers
5k views

C# vertical label in a winform

Is it possible to display a label vertically in a winform ?
5
votes
3answers
9k views

TFS: Labels vs Changesets

I am trying to come up with best practices regarding use of TFS source control. Right now, anytime we do a build, we label the files that are checked into the TFS with the version number. Is this ...
5
votes
1answer
974 views

How do I get URL label when parsing request URL?

URL can have a label, separated with a "#" sign, coming after the URL parameters. E.g. http://example.com/foo/bar.jsp?p1=v1#test_label I would expect label to be part of request.getQueryString() and ...
5
votes
1answer
5k views

How do you set a Tkinter frame size?

This is the code that's giving me trouble. f = Frame(root, width=1000, bg="blue") f.pack(fill=X, expand=True) l = Label(f, text="hi", width=10, bg="red", fg="white") l.pack() If I comment out the ...
5
votes
8answers
596 views

<label> on checkboxes: is there a reason why more websites don't use it?

I always try to do the following: <label><input type="checkbox" /> Some text</label> or <label for="idOfField"><input type="checkbox" id="idOfField" /> Some ...
5
votes
1answer
3k views

In P4V, how do I create a branch from a label?

The company just imported our CVS repository into Perforce. I'm new to P4V and I can't work out how to create a branch from an existing label. Can anyone tell me how to do this?
4
votes
4answers
59 views

Is “for”attribute necessary in HTML label?

I've noticed that a HTML label tag doesn't need the 'for' attribute when you put your input element into the label element: <label><input type="text">Last name</label> But I was ...
4
votes
1answer
232 views

How can you use directlabels and ggplot2?

I'm trying use the directlabels package to label two lines I have in a simple plot (I'm using ggplot2) My code is as follows: # libraries library(ggplot2) library(directlabels) # Variables A = ...

1 2 3 4 5 22