0
votes
2answers
30 views
asp.net hover over label
I'm looking for ideas on what I was hoping to implement.
I had a asp label that I would like to set a max cap for the amount of visible characters in it (not a character limit on …
1
vote
4answers
72 views
objective-C : @synthesize not working and basic operations not working :*(
I am unsure why this code will not work and what i want it to do is when i click a button(action: buttonclick) i want it to change the two text box's(MyTextLabel & MyTextLabel2 …
2
votes
2answers
34 views
How to make a label change to a text box using jQuery
I have some labels that I want to allow users to edit. Is it possible to do this and if so how (using jQuery).
When a user clicks a label, it turns into a textbox, which has the e …
6
votes
3answers
103 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 com …
0
votes
1answer
39 views
Actionscript 3 modify Label Component text
Hi,
I'm trying to modify the text of a Label component that I already placed on the stage in as3.
I'm having trouble getting the text to change though, it just stays the same bas …
5
votes
5answers
170 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_S …
0
votes
3answers
108 views
C# - Display loading 1-100% within 4 seconds.
I have a label on a splash screen that is displayed for 4 seconds. I am trying to make the label display the loading process as a percentage. Obviously, this is just to show the …
0
votes
2answers
50 views
WPF Putting a Button on a Label
I've got a listbox of Labels, each bound to a LabelName and LabelColor. I want to add a small button that resembles an "X" and attach it on the right side of the Label. I want it t …
0
votes
2answers
92 views
Reset a flex label width to “auto” after setting an explicit width?
Once I've set either the width or percentWidth property on a flex label, is there a way to reset the width to its default (i.e., the width of the text plus padding)?
I'm using t …
1
vote
1answer
43 views
Silverlight: Label does not evaluate Binding of custom DependencyProperty
Hi everyone!
I have a Silverlight 3 Label which I connect to a ComboBox using the Target Property of the Label. According to MSDN the Label class iterates through the targets bind …
1
vote
1answer
91 views
is there a equivalent of Java’s labelled break in C# or a workaround
I am converting some Java code to C# and have found a few labelled "break" statements (e.g.)
label1:
while (somethingA) {
...
while (somethingB) {
i …
0
votes
6answers
192 views
Windows batch file - The system cannot find the batch label specified
The Problem
I'm having a problem with a DOS batch file and labels.
I keep getting this error:
The system cannot find the batch label
specified
What I've tried
Two comput …
0
votes
2answers
181 views
C# How to set label text in a listview?
In my codebehind I want the set the text of a label. Here is the aspx code:
<asp:ListView ID="lstRegistrations" runat="server">
<LayoutTemplate>
<table …
0
votes
3answers
56 views
Using “label for” on radio buttons
When using the "label for" parameter on radio buttons, to be 508 compliant, is the following correct?
<label for="button one"><input type="radio" name="group1" id="r1" v …
1
vote
1answer
73 views
devexpress aspxgridview - setting label with page number
Hi,
I am using devexpress aspxgridview in asp.net 3.5 web application.
on pageload, I have a label control on top of the page whose text for example is "abc".
I am trying to set …
