0
votes
2answers
27 views
How can I resize the background of a JLabel or apply top and bottom borders only?
I've got sort of weird issue that I can't seem to figure out. I have something that looks like this:
As you can see, "Blambo" is a JLabel with an opaque, red background. The l …
0
votes
2answers
35 views
only mouse clicked event of jlabel update jlabel text property properly
i am using a java thread to update jlabel text value in my application
but after it updated text on jlabel
jlabel showing all past updated values and new value periodically in orde …
1
vote
1answer
81 views
How to add multi-line label on a Java GUI ?
I have made a java swing GUI. Now I want to display a static message on that but the message is multi-line and the JLabel is single line.
How can I display that message?
Is there …
0
votes
3answers
123 views
Relative path in JLabel HTML
Hi,
I am trying to make JLabel show an html which is referencing an image using a relative path.
But I cannot make JLabel locate the image. It works fine when I am using absolute p …
0
votes
2answers
99 views
How to make JLabels start on the next line
JPanel pMeasure = new JPanel();
....
JLabel economy = new JLabel("Economy");
JLabel regularity = new JLabel("Regularity");
pMeasure.add(economy);
pMeasure.add(regularity);
...
Wh …
1
vote
5answers
80 views
ArrayList content to JLabel
Hi all,
If i have an ArrayList of type Integer, containing numbers like 1,3,4,9,10 etc... How can i display those on a JLabel, not the sum, but all the numbers in a sequence.
So …
1
vote
2answers
55 views
Fading a JLabel that contains html
I can fade out a normal JLabel using a Timer, as follows:
public static void main(String[] args) {
JFrame frame = new JFrame();
// final JLabel label = new JLabel( …
1
vote
3answers
117 views
JLabel on top of another JLabel
Is it possible to add a JLabel on top of another JLabel? Thanks.
0
votes
3answers
76 views
JWindow alway on top not getting focus events.
I have a jwindow(set to be always on top) that you can click to get a pop menu. If the user right clicks the window it shows the pop menu but then if the user clicks any other wind …
1
vote
3answers
176 views
Changing a JLabel’s Value from a JSlider’s Value
I have a single JPanel that contains a JSlider and a JLabel. I want to configure it so that when the JSlider's value is being changed by the user, that new value is reflected by th …
2
votes
2answers
115 views
Customizing Label Fonts in Swing
In my swing application, I have different types of text I'd like to display. For example, I want to display a heading text before a list of choices, something like:
Select ch …
1
vote
3answers
267 views
Newline in JLabel
How can I display a newline in JLabel?
For example, if I wanted:
Hello World!
blahblahblah
This is what I have right now:
JLabel l = new JLabel("Hello World!\nblahblahb …
0
votes
4answers
198 views
JPanel flipping out, FlowLayout not working as intended
Hi,
The other day this code was working. I changed some things and re-ran it and now it doesn't work as intended. Obviously something I changed altered the behaviour, but I have g …
1
vote
1answer
281 views
Creating an Array of JLabels
I'm trying to create 5 Jlabels using netbeans GUI Design, the Labels are supposed to display 5 different values.
I need to combine these 5 JLabels in 1 array of Labels. is there a …
2
votes
2answers
479 views
Multiline text in JLabel
How can I make the text of a JLabel extend onto another line?
