Posts by Cerf Pascal • 3 points
5 posts
-
0
votes1
answer287
viewsQ: How can I change the position of my Jbutton in Swing?
Hello, I’m a beginner and very layman in Java, I was creating a program, and in this program had a button, I wanted to know how I change some button of place in Swing, if someone can help me, I…
-
0
votes1
answer160
viewsQ: Formulario.java:28: error: cannot find Symbol Botaoaction action = new Botaoaction(t);
Ah, so I was creating a show with Swing, heunderlined text reads the name that the user puts, and then shows it to him, very simple thing, I’m still very new, but when I created the class…
-
0
votes1
answer75
viewsQ: Why is it that when I put on the "Jcombobox" component of Swing, my show looks like this?
code I used import javax.swing.*; public class ComboBox extends JFrame{ JComboBox<String> combo = new JComboBox<String>(); public ComboBox(){ add(combo); combo.addItem("Brasil");…
-
0
votes2
answers63
viewsQ: Why don’t my labels show up in the swing?
Can anyone help me? It’s a pretty rookie mistake because my Abels aren’t showing up in the swing? import javax.swing.*; public class first{ public static void main(String[] args){ JFrame f = new…
-
0
votes1
answer45
viewsQ: My Tkinter library buttons/buttons are not showing
I am studying the Tkinter library a little while ago,I started to create this code, when I create the first function "start" the code until it opens the window, but the Labels and button q I declare…