label

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 the label as a renderer. In some cases, I'd like it to automatically size to the text, and in other cases, I'd like it to be a percentage width of its containe...

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 bindings and searches the sources for meta data to determine the content of the Label. This actually works as long as the target is a standard control. But if I u...

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 to look seamless, like the X is very non-intrusive. Any ideas how to do this? The stuff between the <Label.ContentTemplate> does NOT work. I don't even want it ...

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 = { second: 2, first: 1 }; printf("test.first=%d test.second=%d\n", test.first, test.second); } Surprisingly (to me), here's the...

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 user that the program is actually starting up and not actually "loading" anything. Is there a way that I can have the label display the percentage (going from...

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 labels inside subroutines frowned upon? ...

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 based on the inital text I typed in. I'd like to eventually have the label contents change dynamically. When I compile the swf, the two labels have the original v...

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 existing "label text" contained within. When the user then edits the label and clicks somewhere other than the text box, the value is saved. This might actuall...

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) text increment the value "r" by one. here is the code: MainView.h #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> @interface MainView : UIView { ...

Controlling PDF margins for printing labels

My application currently generates a report using the local ReportViewer control which the users then export into Excel from where they can do a label mail merge. I've been asked to see if we can make this process simpler and generate a PDF of labels directly. I've read on here that it may be possible to layout a ReportViewer report so t...

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 the total characters being inserted into the label but just for whats visible in the label). Then on a mouse hover I would like for it to display all the chara...

Avoiding the 'double event' when LABELS are clicked within an element with a click event.

I have some HTML that looks like this: <ul class="toggleList"> <li><input type="checkbox" name="toggleCbx1" id="toggleCbx1" /><label for="toggleCbx1">Item 1</label></li> </ul> I'm using jquery to attach a click event to the LI that will then modify some classes and check or uncheck the checkbox within. I attach the click event...

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 instead of the Right coordinate (which, one might argue, is a bug). For this reason I've always used a full-width TableLayoutPanel for right...

WPF 3D Billboards

In a 3D scene we often need to apply labels (little textelements or icons) next to 3D object that is moving around (rotation, translation) in the scene. These labels should always face the camera but still move with the object. This technique I believe is called billboard. An additional cool feature would be if the label would stay al...

Printing on citrix server

We are using Delphi 7 to develop database apps with advantage as a backend. Our system is usually installed on the windows server with the pcs acting as terminals. All the settings and database are on the server. we are having problems running our software on Citrix servers. In particular printing seems to be an issue. Both in select...

MultiColor Label Control

hi all is it possible at all to somehow make the label contorl multicolored? i have a rich textbox that the user enters text into, and if they change the font for some words in the rtf, and changes colors, and underlines one or more words here and there etc, i need to be able to display the resulting text, with the correct styles set by...

How to change asp:Label content in UpdatePanel after update?

I have an asp:Label inside an update panel that I need to update from both the server application and client side Javascript. I can update the label fine before the first UpdatePanel refresh by setting label.innerHTML. The server changes the label correctly during a panel update. After the update, setting label.innerHTML from clie...

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, the program restarted itself and there was the new version and no more label. I thought that was a great feature. The label is there promin...

Placing label before radio button with JSF

Hi, i have the following in my page. <h:selectOneRadio layout="pageDirection" > <s:selectItems value="#{usageList}" var="entry" label="#{labels[entry.label]}" itemValue="entry" /> </h:selectOneRadio> With this code I get a radio Button and after it the label of the same. [ ] User [ ] Administrator But I want to do the ...

Text in Label not displaying correctly with setText method

I'm trying to set the text in a label dynamically by calling the setText method whenever a button is clicked. Here is my code: import java.awt.*; import java.awt.event.*; class Date { public static void main(String[] args) { new MainWindow(); } } class MainWindow { static Label month = new Label(); static Label...