9
votes
8answers
4k views
Multiple colors in a C# .NET label
Hi,
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 …
8
votes
13answers
417 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 …
6
votes
3answers
123 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 …
5
votes
5answers
291 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 = {
…
4
votes
2answers
182 views
How Do I Add A TLabel To The Menu Bar in Delphi?
I use Beyond Compare (a great program), and was very impressed when it displayed a "New Version Available" label on its Menu Bar. I clicked on it, up popped an install new version box, it installed, …
4
votes
2answers
414 views
VB.NET: label vs picturebox
What is more lightweight control, a label, or a picturebox? (label can contain image too).
I will have a form with 110 icons displayed in separate controls and I'm deciding if I should display them …
4
votes
15answers
934 views
Is it possible to exit a for before time in C++, if an ending condition is reached?
Hello, 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 < …
4
votes
2answers
465 views
Latex: hyperref to individual longtable rows
Hi,
I have a few longtables that stretch several pages and I want to use pageref and hyperref to link to these rows.
But whatever I try, the links always refer to the start of the table.
When I look …
4
votes
5answers
771 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 --via …
4
votes
11answers
2k views
Java Coding standard / best practices - labeled break/continue
Sometimes a labeled break or continue can make code a lot more readable.
OUTERLOOP: for ( ;/*stuff*/; ) {
//...lots of code
if ( isEnough() ) break OUTERLOOP;
//...more code
}
I was …
4
votes
4answers
894 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.
…
3
votes
10answers
187 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 …
3
votes
3answers
91 views
Can a label only refer to input elements?
W3Schools have this to say about labels:
The <label> tag defines a label for an input element.
[Emphasis mine]
Does this mean that the following HTML isn't valid?
<html>
…
3
votes
4answers
464 views
How to create a label inside an <input> element?
Hi! 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 …
3
votes
1answer
437 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 …
