java
How can I set a JLabel text with code in Netbeans
I have used the GUI builder to make some JLabel in a JFrame. These variables are locked and I find it difficult to use them to in another class. // Variables declaration - do not modify private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; public javax.swing.JLabel title; // End of variables declaration
go to the init method and do title = new JLabel("This is my Title label. No?");
after initComponent() invoked method in your constructor add for example jLabel2.setText(test text);
You can't set value to the private variables from anotber class. If you want to do so you can pass the variable as the a parameter and set value. Or you have to make JLable public. `
Related Links
Getting map coordinate using mouse click
Overload in web application server
Test Output not created for a selenium TestNG program
JavaFX BorderPane multi FXML space arrangement and transition effect
How do I check whether a char is == to a number and why doesn't this work? [duplicate]
Setting up MediaController
To print the first biggest and second biggest elements in a string
How to show JSON response in single arrayList?
Using Value of 1 for boolean in Java
onclick is not working for image inside the Baseadapter
Executing Shell script which contains SQL Plus commands from Java Program
Spring Caching - How to manage caches in different scopes?
Android Studio: #Override “Annotations are not allowed here”
How to run sbt assembly command with a custom file path defined?
Apache Marmotta LDPath libraries - Selecting URI fn:content
swing Interface cannot return objects [duplicate]