active questions tagged label - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:39:19Z http://stackoverflow.com/feeds/tag/label http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930375/why-does-visiblefalse-work-on-a-gridview-but-not-label 1 Why does Visible='<%#false%>' work on a GridView but not label? Pasha 2009-12-18T19:59:48Z 2009-12-18T20:14:53Z <p>I am scratching my head over this, but have no idea what the problem is. My actual code is</p> <pre><code>&lt;asp:Label ID="Label1" runat="server" Text="abc" Visible='&lt;%#Request.QueryString["ListName"] == null %&gt;' /&gt; &lt;asp:GridView ID="gvLists" runat="server" Visible='&lt;%#Request.QueryString["ListName"] == null %&gt;' /&gt; </code></pre> <p>As you can see, i am trying to only make the visibility of the object be driven by the querystring. It works fine for the GridView, but doesn't work for a label. I also tried Panel and HyperLink with the same results. </p> <p>I am sure I could get this working by putting my code in the code-behind, but it won't be as clean.</p> http://stackoverflow.com/questions/1920493/reflowing-label-widget-for-string 0 Reflowing label widget for String nd 2009-12-17T09:32:02Z 2009-12-17T12:45:17Z <p>Is there a widget for Swing that behaves like a <code>JLabel</code>, that automatically reflows the text if its dimensions have changed? For example:</p> <pre> Large horizontal space available: +--------------+ | Foo bar baz | +--------------+ Small horizontal space available: +---------+ | Foo bar | | baz | +---------+ </pre> <p>I am currently using <code>JEditorPane</code> with <code>setContentType("text/html")</code> and HTML content. This works, but it does not use the System's default label font for displaying the text. Also, I would rather not put HTML tags into my text - at best, <code>\n</code> characters would be transformed into line breaks and everything else would be displayed as text.</p> http://stackoverflow.com/questions/1909218/blackberry-horizontal-alignment-of-labelfield-in-screen 0 BlackBerry - Horizontal Alignment of LabelField in Screen gav 2009-12-15T17:58:37Z 2009-12-16T16:06:12Z <p>Hi All,</p> <p>I want to add a new LabelField(String label, long style) but if I use Field.FIELD_HCENTER as my style then I get the following alignment.</p> <pre><code>|---- This text is horizontally aligned but in ----| |---- a block. </code></pre> <p>But what I want is;</p> <pre><code>|---- This text is horizontally aligned and ----| |------- independently so for each line --------| </code></pre> <p>Is this simple to achieve? I can't find the field constant to get this to work for me.</p> <p>Thanks in advance,</p> <p>Gav</p> http://stackoverflow.com/questions/1897622/imap-x-gmail-labels 0 IMAP x Gmail => labels ? Ben None 2009-12-13T20:24:23Z 2009-12-15T19:59:55Z <p>Any experiences on a way to get gmail labels (or even filters ?) from an imap connection ? Can't find a clue... thx for any infos about it.</p> http://stackoverflow.com/questions/1905867/how-to-hide-single-labels-on-a-symfony-form 0 How to hide single labels on a symfony form? Hippo 2009-12-15T08:03:14Z 2009-12-15T13:24:48Z <p>Hi,</p> <p>I am creating a very custom form on a symfony project and currently I have something like this:</p> <pre><code>foreach ($foo as $c) { $fields['crit_v_'.$c-&gt;getId()]=new sfWidgetFormInput(array('label'=&gt;'')); $fields['crit_m_'.$c-&gt;getId()]=new sfWidgetFormTextarea(array('label'=&gt;__($c-&gt;getName(),array(),'messages'))); } </code></pre> <p>As you can see I have 2 inputs foreach element, but I only want to have a label for the second one. Setting the label for the first one to <code>null</code> or to <code>''</code> does not make symfony to not render this label and displays the default text for this label. (This means the for input is labeled <code>crit_v_xx</code>.)<br> Is there any simple way to hide specific form labels?</p> http://stackoverflow.com/questions/1647224/actionscript-3-modify-label-component-text 0 Actionscript 3 modify Label Component text duckofrubber 2009-10-29T23:46:04Z 2009-12-15T06:00:02Z <p>Hi, </p> <p>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 value I gave them when I put them on the stage, not the startDate and endDate values. My code looks like:</p> <pre><code>package { import flash.display.*; import fl.controls.Slider; import fl.events.SliderEvent; import fl.controls.Label; public class slider extends MovieClip{ public var startDate:int; public var endDate:int; public function slider(){ dateSlider.addEventListener(SliderEvent.CHANGE, changeHandler); startDate = 1981; endDate = 1995; startLabel.text = startDate.toString(); endLabel.text = endDate.toString(); } private function changeHandler(event:SliderEvent):void { yearLabel.text = (event.value/10) + startDate + " year"; } } } </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1897401/gnu-assembler-get-address-of-label-variable-intel-syntax 1 gnu assembler: get address of label/variable [INTEL SYNTAX] jian2587 2009-12-13T19:12:06Z 2009-12-13T22:50:44Z <p>Hi guys. I have a code like this:</p> <pre><code>.bss woof: .long 0 .text bleh: ...some op codes here. </code></pre> <p>now I would like to move the address of woof into eax. What's the <strong>intel syntax</strong> code here for doing that? The same goes with moving bleh's address into, say, ebx.</p> <p>Your help is much appreciated!</p> http://stackoverflow.com/questions/1893909/why-should-i-avoid-using-java-label-statements 3 Why should I avoid using Java Label Statements? neXus 2009-12-12T16:31:00Z 2009-12-12T16:44:06Z <p>Everywhere across the internet people say that you should avoid using label statements in java. However, I find them very useful in some cases, namely nested loops.<br> I cannot find satisfactory answers as to why not to use them. I think that alternatives to labels often reduce either readability, or performance, or both.</p> <p>So what makes labeled break and continue statements so bad?</p> http://stackoverflow.com/questions/1888413/iphone-label-text-udates-value-but-does-not-show-in-view 0 Iphone: label text udates value but does not show in view Madoc 2009-12-11T14:27:25Z 2009-12-11T14:32:39Z <p>Hi.. </p> <p>I<code>m working on a part of code where a label text should change value after getting a new value from a singleton class. Seems simple enough, and after testing the value it actually changes aswell, but its not updated in the view. In the view it stays the same as before. I</code>ve tried the code both in -(void)viewDidLoad and <code>-(void)viewWillAppear:(BOOL)animated</code>, but with the same result.. Any ideas?</p> <p>Here are my code:</p> <pre><code>- (void)viewDidLoad { //get the new status value sharedBarCodeValue = [BarcodeValues sharedBarCodeValues]; if([[sharedBarCodeValue storeBarCodeValue] isEqualToString:@"123456"]) { [statusText setText:@"This is a new status text"]; } //for testing, output status text NSLog(@"status: %@", statusText.text); [super viewDidLoad]; </code></pre> <p>}</p> <p>Edit: Oh, and I should mention that I´ve implemented a navigation controller, and the value should change when popping a 2. level view off the stack and going back to the root view.</p> http://stackoverflow.com/questions/1883947/iphone-table-cell-label-misaligned 3 iPhone table cell label misaligned Shaggy Frog 2009-12-10T20:53:35Z 2009-12-11T09:36:36Z <p>Similar to <a href="http://stackoverflow.com/questions/1770872/text-misalignment-on-tableview-cells-on-iphone-device">this previous question</a>, 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 <code>UITableViewCell</code>s with the <code>UITableViewCellStyleValue1</code> style, targeting iPhone OS 3.1. I would prefer a much simpler solution than the previous question's answer, especially since I'm not using custom cells. I'd also like to know exactly what the problem <em>is</em>, since that part of the question was never addressed.</p> <p>Here's what it looks like on the simulator:</p> <p><img src="http://www.shaggyfrog.com/junk/table-cell-label-misalignment-simulator.png" alt="Simulator"></p> <p>And on the device:</p> <p><img src="http://www.shaggyfrog.com/junk/table-cell-label-misalignment-device.png" alt="Device"></p> <p>Edit: some more code as per request. (I'm building my table cells outside of cellForRowAtIndexPath.)</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { return [cells objectAtIndex:[indexPath row]]; } - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self loadCells]; [table reloadData]; [self.navigationController setNavigationBarHidden:NO animated:YES]; } - (void)loadCells { cells = [[NSArray alloc] initWithObjects:[self aCell], [self bCell], nil]; } - (UITableViewCell*)aCell { UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Foo"] autorelease]; cell.textLabel.text = @"A"; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; return cell; } - (UITableViewCell*)bCell { UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Foo"] autorelease]; cell.textLabel.text = @"B"; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; return cell; } </code></pre> http://stackoverflow.com/questions/1881865/bold-labels-in-mfc 2 Bold labels in MFC Dana 2009-12-10T15:43:26Z 2009-12-10T15:51:25Z <p>I want to create labels in MFC (Static text) that have both <b>bold</b> and non-bold text. Something like this: </p> <p>"I would like my label <b> to look like </b> this, for example"</p> <p>Any thoughts of how to do this?</p> <p>I know that I can change the font of the entire label and have it either bold or not, but is there any way of merging more than one style, or maybe give an html-like label?</p> http://stackoverflow.com/questions/1878767/label-for-password-field 1 Label for password field Nimbuz 2009-12-10T05:16:59Z 2009-12-10T05:28:02Z <pre><code>&lt;input type="text" value="useraname" /&gt; &lt;input type="password" value="password" /&gt; </code></pre> <p>I'm using jQuery to make the inline labels disappear on click/focus. Password shows bulls as usual, but I wonder if its possible somehow to show "Password" label as text (instead of ••••) inside the password field?</p> <p>Edited to add: I want the user-typed password to be hidden ofcourse!.</p> <p>Thanks</p> http://stackoverflow.com/questions/962640/pyqt-qlabel-inheriting 0 PyQt - QLabel inheriting Ockonal 2009-06-07T19:38:54Z 2009-12-09T11:22:05Z <p>Hello, i wanna inherit QLabel to add there click event processing. I'm trying this code:</p> <pre><code>class NewLabel(QtGui.QLabel): def __init__(self, parent): QtGui.QLabel.__init__(self, parent) def clickEvent(self, event): print 'Label clicked!' </code></pre> <p>But after clicking I have no line 'Label clicked!'</p> <p><strong>EDIT:</strong></p> <p>Okay, now I'm using not 'clickEvent' but 'mousePressEvent'. And I still have a question. How can i know what exactly label was clicked? For example, i have 2 edit box and 2 labels. Labels content are pixmaps. So there aren't any text in labels, so i can't discern difference between labels. How can i do that?</p> <p><strong>EDIT2:</strong> I made this code:</p> <pre><code>class NewLabel(QtGui.QLabel): def __init__(self, firstLabel): QtGui.QLabel.__init__(self, firstLabel) def mousePressEvent(self, event): print 'Clicked' #myLabel = self.sender() # None =) self.emit(QtCore.SIGNAL('clicked()'), "Label pressed") </code></pre> <p>In another class:</p> <pre><code>self.FirstLang = NewLabel(Form) QtCore.QObject.connect(self.FirstLang, QtCore.SIGNAL('clicked()'), self.labelPressed) </code></pre> <p>Slot in the same class:</p> <pre><code>def labelPressed(self): print 'in labelPressed' print self.sender() </code></pre> <p>But there isn't sender object in self. What i did wrong?</p> http://stackoverflow.com/questions/1841640/labels-on-the-input-data-in-gnuplot 0 Labels on the input data in gnuplot Alexandru 2009-12-03T17:46:07Z 2009-12-09T05:35:54Z <p>I have a datafile that looks like this</p> <pre><code>#index name1 name2 name3 1 2 3 4 2 3 4 5 3 4 5 6 4 5 6 7 </code></pre> <p>I want to plot 3 lines:</p> <pre><code>plot "data" using 1:2 with lines,\ ... </code></pre> <p>This works ok, except for the line labels. How can I specify the column names in the datafile?</p> http://stackoverflow.com/questions/1224182/label-fires-click-function-twice 1 Label fires click function twice Vladimir 2009-08-03T19:29:32Z 2009-12-08T11:12:15Z <p>Hi</p> <p>Is any way to call a function and at the same time save effect on the radiobutton by clicking label?</p> <p>Example (I need open/close fieldsets with checkboxes by clicking labels for radiobuttons)</p> <pre> &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br /> &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br /> &lt;head&gt;<br /> &lt;title&gt;Click on Label&lt;/title&gt;<br /> &lt;script src=&quot;/js/jquery-1.3.2.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br /> &lt;script type=&quot;text/javascript&quot;&gt;<br /> $(document).ready(function(){ <br /> accordionOptions();<br /> });</p> <p>function accordionOptions(){<br /> $(&quot;label.legend, label.childless&quot;).click( function(event){<br /> var opposites = $(&quot;.subtype&quot;).not($(this).next());<br /> var el = $(this);<br /> opposites.find(&quot;input:checked&quot;).attr('checked', false);<br /> opposites.removeClass(&quot;expanded&quot;);<br /> el.siblings(&quot;label&quot;).removeClass(&quot;expanded&quot;);<br /> el.next(&quot;.subtype&quot;).toggleClass(&quot;expanded&quot;);<br /> el.toggleClass(&quot;expanded&quot;);<br /> }); <br /> }<br /> &lt;/script&gt;<br /> &lt;style type=&quot;text/css&quot;&gt;<br /> &lt;!--<br /> HTML { text-align: center}<br /> BODY { background: #FFF; color: #494949; font: .813em/140% Arial, Helvetica, sans-serif; text-align: left; margin: 4em auto; width: 240px}<br /> LABEL { display: block; margin-bottom: .6em}<br /> .subtype { display: none}<br /> .expanded { display: block !important}<br /> .label.expanded { /*styling selected fieldset heading*/}<br /> --&gt;<br /> &lt;/style&gt;<br /> &lt;/head&gt;</p> <p>&lt;body&gt;<br /> &lt;form action=&quot;&quot; method=&quot;post&quot;&gt;<br /> &lt;fieldset&gt;<br /> &lt;label class=&quot;legend expanded&quot;&gt;&lt;input name=&quot;rb_item&quot; type=&quot;radio&quot; value=&quot;&quot; checked=&quot;checked&quot; /&gt;Item 0100&lt;/label&gt;<br /> &lt;fieldset class=&quot;subtype expanded&quot;&gt;<br /> &lt;label&gt;&lt;input name=&quot;item01&quot; type=&quot;checkbox&quot; value=&quot;&quot; /&gt;Item 0101&lt;/label&gt;<br /> &lt;label&gt;&lt;input name=&quot;item01&quot; type=&quot;checkbox&quot; value=&quot;&quot; /&gt;Item 0102&lt;/label&gt;<br /> &lt;/fieldset&gt;<br /> &lt;label class=&quot;childless&quot;&gt;&lt;input name=&quot;rb_item&quot; type=&quot;radio&quot; value=&quot;&quot; /&gt;Item 0200&lt;/label&gt;<br /> &lt;label class=&quot;legend&quot;&gt;&lt;input name=&quot;rb_item&quot; type=&quot;radio&quot; value=&quot;&quot; /&gt;Item 0300&lt;/label&gt;<br /> &lt;fieldset class=&quot;subtype&quot;&gt;<br /> &lt;label&gt;&lt;input name=&quot;item03&quot; type=&quot;checkbox&quot; value=&quot;&quot; /&gt;Item 0301&lt;/label&gt;<br /> &lt;label&gt;&lt;input name=&quot;item03&quot; type=&quot;checkbox&quot; value=&quot;&quot; /&gt;Item 0302&lt;/label&gt;<br /> &lt;/fieldset&gt;<br /> &lt;button type=&quot;submit&quot;&gt;Submit&lt;/button&gt;<br /> &lt;/fieldset&gt;<br /> &lt;/form&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt; </pre> http://stackoverflow.com/questions/1863526/how-to-use-rails-i18n-t-to-translate-an-activerecord-attribute 0 How to use Rails I18n.t to translate an ActiveRecord attribute? juwalter 2009-12-07T23:01:28Z 2009-12-08T11:05:51Z <p>Trying to use my active record translations in config/locales/de.yml also in my views. I thought I am clever using this:</p> <pre><code>de: activerecord: attributes: user: login: "Benutzerkennung" comment: "Bemerkungen" </code></pre> <p>And in my view this:</p> <pre><code>&lt;%= label_tag :login, t('activerecord.attributes.user.login') %&gt; </code></pre> <p>But instead of the translation value ("Benutzerkennung") I am getting the infamous "translation missing: de, activerecord, attributes, user, login"</p> <p>Has anybody got this working (not using the label translation plugin (I am wary of potential side effects), or User.humanize_attribute_name)? What am I missing? (it does work when I use "activerecord1" or something else than activerecord, so my setup seems to be fine)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1836980/jquery-flot-data-axis-labels-on-top-of-graph 0 jQuery Flot data/axis labels on top of graph Candidasa 2009-12-03T00:57:49Z 2009-12-06T14:55:42Z <p>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.</p> <p>The following example creates an overlay div on top of the graph for the annotations: <a href="http://people.iola.dk/olau/flot/examples/annotating.html" rel="nofollow">http://people.iola.dk/olau/flot/examples/annotating.html</a></p> <p>Is there a straightforward way of grabbing the text and formatting of an axis from within flot and creating such an overlay out of it? Or, is there maybe another better way of overlaying the axis labels on top of the graph?</p> http://stackoverflow.com/questions/1323321/all-the-uilabels-in-my-uitableviewcell-sometimes-have-a-black-blackground-color 0 All the UILabels in my UITableViewCell sometimes have a black blackground color Andrew Arrow 2009-08-24T16:15:40Z 2009-12-05T16:00:03Z <p>This happens like once every 100 times I open my app.</p> <p>Normally all the UILabel work fine and have a white background.</p> <p>But every once in a while, the app opens and they all have a black background.</p> <p>Then it's black on black text and you can't read anything.</p> <p>I've tried setting the backgroundColor to white or clearColor.  Doesn't seem to affect this when it happens.  Any ideas?</p> http://stackoverflow.com/questions/1846340/reading-status-from-zebra-printer 1 Reading status from Zebra Printer pmoreira 2009-12-04T11:18:10Z 2009-12-04T13:07:07Z <p>Hi,</p> <p>I'm working on a project where we need to use a Zebra Printer for barcode labels. We're using C#, and we're doing OK on the printing side of things, sending raw ZPL strings to the printer (using winspool.drv).</p> <p>However, we also need to read from the printer, and no luck there.</p> <p>We need to get the status from the printer, which is the output to the ZPL command "~HS", so we can tell how many labels are in memory waiting to be printed. The EnumJobs() from winspool.drv only has jobs on the windows spool, and once they're sent to the printer, they're gone from that list. But that doesn't mean the label has been printed, since the printer has a peel sensor and only prints one label at a time, and we're obviously interested in sending batches of labels to the printer.</p> <p>I've tried something like (using the winspool.drv calls):</p> <pre><code>OpenPrinter(szPrinterName, out hPrinter, IntPtr.Zero); WritePrinter(hPrinter, pBytes, dwCount, out dwWritten); // send the string "~HS" ReadPrinter(hPrinter, data, buff, out pcRead); </code></pre> <p>But I get nothing on the ReadPrinter call. I don't even know if this is the right way of going at it.</p> <p>Anyone out there tackled this before? </p> <p>Thanks.</p> http://stackoverflow.com/questions/1828742/rotating-axis-labels-in-r 2 rotating axis labels in R Zach 2009-12-01T20:35:33Z 2009-12-01T20:56:27Z <p>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?</p> http://stackoverflow.com/questions/1821461/how-can-i-print-to-a-label-printer-from-a-web-page 1 How can I print to a label printer from a web page Dave 2009-11-30T18:19:11Z 2009-12-01T11:07:40Z <p>Hi</p> <p>I have an e-commerce web application and I'd some how like to make that print to a label printer for the back end stuff</p> <p>I have two questions</p> <p>1) I can't print from a normal webpage straight to the printer (A zedbra LP2844 i think) it just throws out junk</p> <p>2) I want to be able to print labels to the label printer, but all other printing, such as invoices would go to the default printer - a laser, so need someway of selecting the right printer</p> <p>It will all happen at a fixed location, so I can insist on for example using Firefox with a specific (custom?) plugin installed (already using firefox so this would be a neat way)</p> <p>Does anybody know if this is possible, is a firefox extention a possible and/or good way of doing this? </p> <p>Anybody out there that can write ff plugins?</p> <p>I would presume this must have been done before surely, but cannot find anything on google</p> <p>Thanks for any help</p> <p>Dave</p> http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi 4 How Do I Add A TLabel To The Menu Bar in Delphi? lkessler 2009-11-19T03:04:23Z 2009-11-30T20:35:59Z <p>I use <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> (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.</p> <p>I thought that was a great feature. The label is there prominently on the menu bar where the user can't miss it. I've already got the update procedure, so all I had to do was add the label. That should be easy.</p> <p>Here's the label where I want it: <img src="http://www.beholdgenealogy.com/img/tlabel.jpg" alt="The Label Where I Want It"></p> <p>... Wrong. I couldn't figure out how to add a label there. The menu bar and the control area above it appear to be hands-off area for visual components. I couldn't place one there.</p> <p>But I know it can be done, because Beyond Compare is a Delphi program. </p> <p>Can anyone tell me what I have to do to put a TLabel in my Menu Bar or at least make it appear to be over the Menu Bar in the correct position?</p> <p>For reference, I use Delphi 2009.</p> <p><hr></p> <p>Conclusion: Christopher seems to have correctly figured out what the Beyond Compare people did. I've decided to implement the menu item, but without the customization of his "owner draw" solution. So I don't get the blue bold underline hyperlink look, but I also don't lose all the automatic things (like the Vista styling) that owner draw skips.</p> <p>To space the menu item over to the right, I've added an item after the "Help" that has the caption " " and is disabled.</p> <p>Thanks, Christopher. I was stuck thinking it must be a Label, but you saw around that.</p> http://stackoverflow.com/questions/641217/css-control-inheritance-inheriting-other-control-styles 1 CSS Control Inheritance - Inheriting Other Control Styles Boydski 2009-03-13T02:06:40Z 2009-11-30T19:39:33Z <p>Two parts to my question:</p> <p>1) Is there a way to inherit another control's attributes and styles in CSS? Assume the controls have no parent/child hierarchy and can be completely different control types:</p> <p>IE:</p> <pre><code>#MyFirstControl { width: 100px; } #MySecondControl { width: MyFirstControl.styles.width; /* This doesn't work */ } </code></pre> <p>2) Assume a Label tag is a child of any other tag. The width attribute will neither work with "inherit" nor "auto". What's wrong?</p> <p>IE:</p> <pre><code>&lt;style&gt; div { width: 100px; } &lt;/style&gt; &lt;div&gt; &lt;!-- This label does what it wants for width. It's not the width of the containing div --&gt; &lt;label style="width: inherit"&gt;Some Text&lt;/label&gt; &lt;div&gt; </code></pre> http://stackoverflow.com/questions/1775858/text-in-label-not-displaying-correctly-with-settext-method 0 Text in Label not displaying correctly with setText method GR1000 2009-11-21T15:57:16Z 2009-11-30T14:46:34Z <p>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:</p> <pre><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 day = new Label(); static Button submit = new Button("Submit"); MainWindow() { Frame myFrame = new Frame("Date Window"); myFrame.setLayout(new FlowLayout()); myFrame.add(month); myFrame.add(day); myFrame.add(submit); submit.addActionListener(new ButtonListener()); myFrame.addWindowListener(new WindowListener()); myFrame.setSize(200, 200); myFrame.setVisible(true); } } class WindowListener extends WindowAdapter { @Override public void windowClosing(WindowEvent e) { System.exit(0); } } class ButtonListener implements ActionListener { public void actionPerformed(ActionEvent event) { if (event.getSource() == MainWindow.submit) { MainWindow.month.setText("12"); MainWindow.day.setText("31"); } } } </code></pre> <p>When I initialize the two Label objects without any arguments, the strings "12" and "31" that are passed to the setText method aren't visible on the screen when the submit button is clicked until I click on the window and drag to resize it. I've noticed this on a Mac only. On a PC, the strings are are visible but obscured until I resize the window. However, if I initialize the labels like this:</p> <pre><code> static Label month = new Label("0"); static Label day = new Label("0"); </code></pre> <p>On the Mac, the strings appear as intended, however, they're obscured until the window is resized. What am I missing?</p> http://stackoverflow.com/questions/1819878/changing-button-color-programatically 1 Changing button color programatically Zsolt 2009-11-30T13:39:29Z 2009-11-30T13:53:05Z <p>Dear All,<br /> Is there a way to change the color of a button, or at least the color of the button label programmatically? I can change the label itself with </p> <pre><code>document.getElementById("button").object.textElement.innerText = "newlabel"; </code></pre> <p>But how to change the color?</p> <p>Thanks,<br /> Zsolt</p> http://stackoverflow.com/questions/1803331/how-to-move-a-label-on-a-winform-at-runtime 1 how to move a label on a winform at Runtime Darkmage 2009-11-26T12:11:12Z 2009-11-26T12:22:00Z <p>using this event the label just disappears, how shod i do this?</p> <pre><code> private void label4_MouseMove(object sender, MouseEventArgs e) { label4.Location = new Point(Cursor.Position.X, Cursor.Position.Y); } </code></pre> http://stackoverflow.com/questions/1784059/what-is-the-most-commonly-used-version-control-system-with-support-to-tagging-lab 0 What is the most commonly-used version control system with support to tagging/labeling? Swourin 2009-11-23T15:57:28Z 2009-11-23T20:03:00Z <p>Actually I'm using VSS, but I was wondering if there is another tool for version control with support for labels/tags (the subversion implementation doesn't count:). What are you guys using?</p> http://stackoverflow.com/questions/1782251/-core-plot-label-not-showing 0 [ CORE PLOT] label not showing sizi 2009-11-23T10:23:51Z 2009-11-23T10:23:51Z <p>Hi, I download library coreplot and i try example and i try this tutorial <a href="http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application" rel="nofollow">http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application</a>. I have two problem: 1) When I compiled example i don't have error and warning but label of example not showing. 2) inside the tutorial the command "axisSet.xAxis.axisLabelOffset = 3.0f;" give me a error " error: 'axisSet' undeclared (first use in this function)".</p> <p>What is the problem? is very important for me a speed reply thank you all :) best regard</p> http://stackoverflow.com/questions/438844/is-there-a-label-in-python 3 Is there a label in Python ? rejinacm 2009-01-13T12:53:23Z 2009-11-22T16:02:43Z <p>Is there a label or any equivalent implementation in Python?</p> http://stackoverflow.com/questions/1777990/c-programming-address-of-a-label 3 C Programming: address of a label Joshua Cheek 2009-11-22T06:17:10Z 2009-11-22T07:48:38Z <p>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 your reservations, and understand why I am using them anyway). </p> <p>So far they have been fantastic, but I want to expand the functionality in such a way that requires me to essentially be able to store pointers to the labels, then go to them later. </p> <p>If this code worked, it would represent the type of functionality that I need. But it doesn't work, and 30 min of googling hasn't revealed anything. Does anyone have any ideas?</p> <pre><code>int main (void) { int i=1; void* the_label_pointer; the_label: the_label_pointer = &amp;the_label; if( i-- ) goto *the_label_pointer; return 0; } </code></pre>