1
vote
1answer
23 views
gnu assembler: get address of label/variable [INTEL SYNTAX]
Hi guys. I have a code like this:
.bss
woof: .long 0
.text
bleh:
...some op codes here.
now I would like to move the address of woof into eax. What's the intel syntax code here for doing that? The …
0
votes
4answers
46 views
IMAP x Gmail => labels ?
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.
3
votes
4answers
67 views
Why should I avoid using Java Label Statements?
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.
I cannot find satisfactory answers …
0
votes
1answer
19 views
Iphone: label text udates value but does not show in view
Hi..
Im 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 …
3
votes
2answers
55 views
iPhone table cell label misaligned
Similar to this previous question, 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 …
2
votes
1answer
35 views
Bold labels in MFC
I want to create labels in MFC (Static text) that have both bold and non-bold text. Something like this:
"I would like my label to look like this, for example"
Any thoughts of how to do this?
I …
1
vote
4answers
42 views
Label for password field
<input type="text" value="useraname" />
<input type="password" value="password" />
I'm using jQuery to make the inline labels disappear on click/focus. Password shows bulls as usual, but …
0
votes
4answers
388 views
PyQt - QLabel inheriting
Hello, i wanna inherit QLabel to add there click event processing.
I'm trying this code:
class NewLabel(QtGui.QLabel):
def __init__(self, parent):
QtGui.QLabel.__init__(self, parent)
…
0
votes
1answer
18 views
Labels on the input data in gnuplot
I have a datafile that looks like this
#index name1 name2 name3
1 2 3 4
2 3 4 5
3 4 5 6
4 5 6 7
I want to plot 3 lines:
plot "data" using 1:2 with lines,\
...
This works ok, except for the line …
1
vote
3answers
172 views
Label fires click function twice
Hi
Is any way to call a function and at the same time save effect on the radiobutton by clicking label?
Example (I need open/close fieldsets with checkboxes by clicking labels for radiobuttons)
…
0
votes
1answer
27 views
How to use Rails I18n.t to translate an ActiveRecord attribute?
Trying to use my active record translations in config/locales/de.yml also in my views. I thought I am clever using this:
de:
activerecord:
attributes:
user:
login: …
0
votes
1answer
59 views
jQuery Flot data/axis labels on top of graph
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.
The following …
0
votes
1answer
46 views
All the UILabels in my UITableViewCell sometimes have a black blackground color
This happens like once every 100 times I open my app.
Normally all the UILabel work fine and have a white background.
But every once in a while, the app opens and they all have a black background.
…
1
vote
1answer
31 views
Reading status from Zebra Printer
Hi,
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 …
2
votes
2answers
58 views
rotating axis labels in R
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?
