label

How do I add parameters to an event handler in javascript?

Hi, and thanks for looking. Currently I am implementing code from this example. In my aspx file, I have Label1 and Textbox1 defined. In my aspx.cs file, I am setting the Label1.Text property to a random string in the Page_Load method. In the .js file I have included, I have: var Label1, TextBox1; Sys.Application.add_init(AppInit); f...

GWT Label like Hyperink

Hi I want a Gwt Label which acts like an hyperlink. Basically the label should have an on click method which when clicked opens up a website.I dont want to implement this using an IFrame. Is there any way i can do this? Soryy if the question is pathetically easy to solve. ...

Slide and Label Update

Hi. Is there a way to update a label bind to a slider while the slider is draged? I bind the label to the slider via 'takeFloatValueFrom:' but it's update the value only when i release the mouse from the slider. Thanks ...

how to pass value from asp.net server control using jQuery? 2nd try

I want to pass the value of the label control (lblNames) via jQuery. The current code is not working. I'm using the label control to collect the uploaded file names in code behind. Is there a way? <%@ Page Language="VB" AutoEventWireup="false" CodeFile="FileUploader.aspx.vb" Inherits="FileUploader" EnableEventValidation="false" %> <!DO...

Binding Label content to Self string field but no result

I'm trying what should be an easy bind in my user control: <UserControl x:Class="MyApp.FlowNode" ...> <StackPanel> <Label Content="{Binding Path=Header, RelativeSource={RelativeSource Self}}" /> </StackPanel> </UserControl> With the underlying code being: public partial class FlowNode : UserControl { public FlowNo...

R graphics: Add labels to stacked bar chart

Hi, I am looking for a way to add labels, i.e. absolute values, into a stacked bar chart using the basic plot functions of R. The labels should be inside the stacked bars. Thank you! ...

C# label AutoSize adds padding

I have a Label on a Windows.Form. I set the AutoSize property on the label to True and I noticed that when I do that, it pads the right hand side with ~5px of white background. I have the Padding property set to [0, 0, 0, 0]. Is there a way to get rid of this? I would like to get the bounds of the label as close as possible to the text...

browser compatibility issue

hi all, see code below.. <div style="overflow:auto;width:250px;height:75px;border:1px solid #336699;padding-left:5px"> <label style="{width:250px;}"><input type="checkbox" name="wow[]" onclick='highlight_div(this);'> PHP</label><br> <label style="{width:250px;}"><input type="checkbox" name="wow[]" onclick='highlight_div(this);'> LINUX...

Google Maps Api adding label

i'm using the the following function to create my markers from a XML file. i wish to label each market 1,2,3,4,5,6 etc where 'i' is the number. can some please please tell me how to incorporate this. thank you function createMarker(point, name, address, type, i) { var marker = new GMarker(point, customIcons[type]); var html = "<...

Vba - Set transparent color or direct hex value of label backcolor?

Hi, I want to insert a label into a PowerPoint presentation. But I don't want any background on there, or, have the background color be the same as the what is underneath. I've found that 082F68 is the hex code I want. The RGB code is: 8, 47, 104 This color is supposed to be bluish, but when I insert it, it just gets brown. I really d...

C# Winforms - Change a Listview item's label

Hello Again, I have looked through the listview controls and wasnt able to find how the label for each item is defined. When I load an image into the listview, I see the full path of the image under the image. What Im looking to do is replace the text with something more descriptive of the image itself, and not the path where it is loca...

Writing data to a Label

I want to populate an html label based on user information. I know how to read the data from html to c#, and how to manipulate the data. I just dont know how to return the data from c# to the html label. <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="LoginUserName">Username:</asp:Label> <asp:TextBox ID="LoginUserName...

Flash TextField -- make it act like a label?

How can i disable the text selection abilities and such of flash TextFields (so they act like labels)? ...

Address label with 2d barcode

need to locate a postcode driven address labelling software that print a 2d barcode label containing all the address details. Can anybody point me in the right direction? JT ...

CF - Align text in a Label

Hello! Is there a way to align a text in a label to its absolute center (compact framework)? Not a topCenter but a center of the label. I want to avoid putting a label into a panel (container)... ...

Underline Text in Tkinter Label widget?

I am working on a project that requires me to underline some text in a Tkinter Label widget. I know that the underline method can be used, but I can only seem to get it to underline 1 character of the widget, based on the argument. i.e. p = Label(root, text=" Test Label", bg='blue', fg='white', underline=0) change underline to 0, and i...

How to programmatically adding a label control into a web form?

Hi all, How do I add a label next to a textbox during runtime in asp.net? Unlike window form, I can't set the location of the control. So how do I instantiate a label and set the location next to a declared textbox? Or may be adding a string like "<span>my message</span>" next to the textbox will work for me as well. Thank you. ...

BlackBerry Fontsize change

Hi I am trying to change Font color and Font size at runtime of my Field ColorLabelField which extends LabelField. Following is a code : public class ColorLabelField extends LabelField { private int _newcolor = Color.BLACK; private Font _font = Font.getDefault(); public ColorLabelField(String label) { super(l...

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 polotted and the Ytick labels are also shown, the labels are highly overlapped because of the large number of rows. Is there any way to sol...

JQuery if label contains this... do this

I have asp.net repeater on a page. If each item being repeated is wrapped in a label like so: <label class="ItemName">value</label> If this label contains the text '35' I want to display some text next to it. How can i do this using jquery??? jQuery(document).ready(function () { if ($('.ItemName').val().indexOf("35")) { ...