Search Result
Collapse
15 results in 0.0043 seconds.
Keywords
Members
Tags
-
Events disabled when did cut and paste? VB
In a form, when I cut a control (a label) which has an event attached to it (click event), i noticed that the event attached to it doesnt work anymore when you paste it (the label I cut). why? how to resolve this? -
Button Label change on EVT_BUTTON in wxpython!!!
Some system info before proceeding further:
Platform: Mac OS X 10.7.1
Python Version: ActiveState Python 2.7.1
wxPython Version: wxPython2.9-osx-cocoa-py2.7
I want the button label to be changed while performing a task
So, here is what I did/want:
Code:self.run_button=wx.Button(self.panel,ID_RUN_BUTTON,label='Install') self.Bind(wx.EVT_BUTTON, self.OnRun,id=ID_RUN_BUTTON)
-
jagdeep gupta started a topic How to use Font.names property for a single label as Font.name is already there?in ASP .NETHow to use Font.names property for a single label as Font.name is already there?
there is two properties under font area for web control What is use of Names as Name set the value of font.
If any please give example for it.
Thanks In advance -
Why is label not showing up in my tab?
When I create the tab for the tab control and try to add the label to it, the label will not show. What am I doing wrong here?
Code:private void FirstLogin() { TabPage loginTab = new TabPage("Login"); loginTab.BackColor = SystemColors.Control; tabControl1.TabPages.Add(loginTab); Label loginLabel = new Label();
-
first-child on form elements
Code:<div class="box-title"> <h3>Login</h3> <label>Username:</label> <input type="text" name="username" /> <label>Password:</label> <input type="password" name="pass" /> </div>
-
Different colors in a label
I wanna crate a label that has muliple colors in it?
is it possible to do?
and if it is, how? -
How to check for existence of a control label (without error handler)?
Hello,
Right now I'm having some performance issues (forms taking 2 or so seconds to check) when trying to check for all control labels in a loop. Currently the code I have is this:
Code:Function hasLabel(ByRef ctl As Control) As Boolean Dim tempstr As String On Error GoTo err_handler tempstr = ctl.Controls(0).Name hasLabel = True Exit Function err_handler:
-
Promedeus started a topic InvalidCastException when getting Text from a Label referenced by dynamic stringin C SharpInvalidCastException when getting Text from a Label referenced by dynamic string
.NET Version: 3.5
Ok, I recieve an error (System.Invalid CastException was unhandled. Message="Unable to cast object of type 'System.Windows .Forms.Control[]' to type 'System.Windows .Forms.Label'." ) when trying to get Text from a Label referenced by a dynamicly built string.
Here's my situation; I have an array of 250 labels named l1 - l250. What I want to do is loop through them using this while statement:
... -
Inserting blank records to query result for label printing
How do,
I have a form that outputs addresses in a format that can be printed on to 3x7 label paper for envelopes.
What I want is a way to enter blank (or " ") rows to the query result where the user specifies so no label is printed in that particular place.
I am aware of the problems of inserting blank records to tables. I say this as the other forums I have searched all reply with disbelief... -
Identifying through many columns
I have a huge table with 10m entries. But there is only 500,000 different. The only way to identify each different entry is concatenating many columns. The final result is a 20 characters long, which is not very useful for calculations. I would prefer a number.
Can I create a variable stored in a column that increases every time there is a change in some of the other columns? Is there a way to simplify the 20-characters-long variable?... -
How do I autosize the TEXT?
I have a box that has a predetermined size. Is there anyway I can automatically size the text to make it the largest it can, while still fitting inside the label's size? I cannot auto size the label, the label needs to stay the same size, I just need to resize the text.
Thanks to all that help! -
reflect mouse on label to button
first, i don't know what could i possibly write for the "question" field...
i have a button, and i put a label over it, i did that, and transparency and other things are not a problem for me, the problem is, when i take mouse over the label, the button no more has the "effect" which comes when mouse is over it (blue colored in vista/7) so what i wanna do is, somehow make button think the mouse is over it when the... -
Labels = Radio button
Im doing some javascript coding for a project and i need to make a radio button
selected when the corresponding label is clicked.
any idea what the code is to do this? -
Link labels to relative paths on the local machine
Hi, I would like to create a link in my program that will open a file stored in a directory relative to the program itself.
e.g. if the program is in the program folder, the file I want to open is program/data/file.html.
I have no trouble creating links to websites or files specified with an absolute path but have been unable to open a file using a relative path. Any help would be appreciated.
AJ -
Label within repeater losing text on postback
Can anyone show me an example of a solution to the problem described in this thread? How do I rebind a label in a repeater on a postback?
http://bytes.com/groups/net-asp/3270...text-post-back
(I don't seem to be able to post to that group or something).
Thanks....