Java GUI Buttons (Swing Tutorial)
27:00
Java GUI Labels (Swing Tutorial)
14:56
Java GUI Windows (Swing Tutorial)
9:29
Пікірлер
@ArcanCataloglu
@ArcanCataloglu 15 сағат бұрын
3:01 could we have made it a "final" variable ?
@NewerbotsGuy
@NewerbotsGuy 2 күн бұрын
I am new to jdbc and couldn't find any tutorial that helps me but this tutorial is very GOOD and straight forward and I managed to get all things done! 100/10
@skeetyvod2534
@skeetyvod2534 4 күн бұрын
Thank you so much, you're a life saver
@TapTap_196
@TapTap_196 4 күн бұрын
No problem, glad it helped 😀
@rikhilkulal122
@rikhilkulal122 4 күн бұрын
Which platform?
@TapTap_196
@TapTap_196 4 күн бұрын
Hello, I use IntelliJ
@WilliamPenprase
@WilliamPenprase 5 күн бұрын
Thank you for this helpful information, especially with the JAVA_HOME variable!
@nurzhastemirbulat7355
@nurzhastemirbulat7355 5 күн бұрын
Best video
@GaneshramMurugesan
@GaneshramMurugesan 5 күн бұрын
Thank you so much 🙏
@TapTap_196
@TapTap_196 4 күн бұрын
No problem 😀
@GaneshramMurugesan
@GaneshramMurugesan 6 күн бұрын
I can't add jar file to the path can someone help me
@TapTap_196
@TapTap_196 4 күн бұрын
Hello, were you able to figure it out? And what IDE are you using?
@jeanmmm8171
@jeanmmm8171 7 күн бұрын
simple and useful thanks!!
@TapTap_196
@TapTap_196 4 күн бұрын
Thanks!
@Tovqqq
@Tovqqq 7 күн бұрын
Hey ! Im having some problem, some loggin options are not showing, is there anything Im missing in the configuration?
@TapTap_196
@TapTap_196 4 күн бұрын
Hello, could you clarify more about the problem?
@LucasxLF4
@LucasxLF4 8 күн бұрын
package views; import models.Person; import wwsservices.DataAccessObject; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.List; public class SpesenView extends JPanel { JComboBox<String> personAuswahl; public SpesenView() { setLayout(new BorderLayout()); Box spesenBox = Box.createVerticalBox(); add(spesenBox, BorderLayout.CENTER); DataAccessObject dao = new DataAccessObject(); List<Person> listPersonen = dao.findAll(); String[] personen = new String[listPersonen.size()]; for (int i = 0; i < listPersonen.size(); i++) { Person bufPerson = listPersonen.get(i); personen[i] = String.format("%s: %s, %s", bufPerson.getId(), bufPerson.getNachname(), bufPerson.getVorname()); } personAuswahl = new JComboBox<>(personen); spesenBox.add(personAuswahl); /* personAuswahl.addActionListener(e -> {JOptionPane.showMessageDialog(getParent(), "Hallo");}); */ /* personAuswahl.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog(getParent(), "Hallo"); } }); */ personAuswahl.addActionListener(new JBoxEventHandler()); JButton btnTest = new JButton("Test"); btnTest.addActionListener(new ButtonEventHandler()); spesenBox.add(btnTest); } private class JBoxEventHandler implements ActionListener { @Override public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog(getParent(), "Hallo"); } } private class ButtonEventHandler implements ActionListener { @Override public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog(getParent(), personAuswahl.getSelectedItem()); } } }
@Tozu25
@Tozu25 8 күн бұрын
Commenting to support! Awesome work mate!
@TapTap_196
@TapTap_196 4 күн бұрын
Thank you!
@Tozu25
@Tozu25 8 күн бұрын
You would be a very good teacher and your english is good. You could do a tutorial series on Java Swing and JavaFX, going through every single thing. There’s really only one playlist one KZbin like that, which actually goes through everything, most only give some basic info on labels etc. Those would be a really successful series’. There are tons of people using swing even though it’s old. It’s still easy to learn and can be made to look very modern. All the glowing, shadows, whatever the user wants, all is possible with the Graphics class.
@TapTap_196
@TapTap_196 4 күн бұрын
Thanks! and I want to. Hopefully I have the energy and time for it 😅
@Tozu25
@Tozu25 8 күн бұрын
Is this real timed? You are the first who types faster than me😂 Have you tested your words per minute? I get like 80-120 averaging 100.
@Tozu25
@Tozu25 8 күн бұрын
You show the power of OOP after really understanding it. I have done Java for 2 months, and I like it a lot so far! Extends and implements and imports, it allows for anything!
@Tozu25
@Tozu25 8 күн бұрын
You’re awesome!
@ahmadghumman-y5n
@ahmadghumman-y5n 9 күн бұрын
please use postgerSQL in next spring boot java fx dev
@TapTap_196
@TapTap_196 4 күн бұрын
Will do 👍
@reiino8293
@reiino8293 9 күн бұрын
does this work on mac?
@TapTap_196
@TapTap_196 4 күн бұрын
Hello, yeah it should also work for Mac
@ahmadghumman-y5n
@ahmadghumman-y5n 10 күн бұрын
make development videos of spring boot javafx project like a webbrowser or etc.