Java Swing and MySQL | Select, Insert, Delete, Update and Desing using FlatLaf - Part #2

  Рет қаралды 3,332

Ra Ven

Ra Ven

Күн бұрын

Пікірлер: 48
@great-escanor
@great-escanor 7 ай бұрын
I love your videos, keep making this wonderful content! Congrats.
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you for your support :)
@andersonferreira5836
@andersonferreira5836 7 ай бұрын
Teacher, Now you have mastered these sequences of classes, it is now very easy to understand, congratulations.
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you 😘
@aboodymohammed4658
@aboodymohammed4658 7 ай бұрын
We are eagerly awaiting the third part 😍
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you, I try release soon :)
@EdyRomyo
@EdyRomyo 7 ай бұрын
The legend is back again 🎉
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you :)
@Anthony-xu8yr
@Anthony-xu8yr 7 ай бұрын
Your video are great and only some video were necesseray for me to learn the basics of swing so thank you very much, if you could do episode(s) on deployement with swing next I would be really grateful 😄.
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you, and I will check it :)
@harshjain6330
@harshjain6330 7 ай бұрын
awesome video 🤩🤩
@LaingRaven
@LaingRaven 7 ай бұрын
Thank you 🤗
@lasotreph398
@lasotreph398 7 ай бұрын
Sir, can you make progress bar that connect to database and it will display the background task?
@MiPrimerMonopolio
@MiPrimerMonopolio Ай бұрын
Ra ven, good video. How can I focus the JTextField when the GlassPanePopUs.showPopUp? requestFocus in Create doesn't work.
@LaingRaven
@LaingRaven Ай бұрын
Use Modal Dialog project. The glasspane popup library not have this option. You can check this: github.com/DJ-Raven/java-sample-form/tree/main/sample-form-use-modal-dialog
@gufranthakur
@gufranthakur 7 ай бұрын
Please stick to intelliJ, i loved those mig layout videos
@PocanYT
@PocanYT 7 ай бұрын
Good job!
@LaingRaven
@LaingRaven 7 ай бұрын
Thanks!
@kitnaaja
@kitnaaja 7 ай бұрын
AWESOME !!! THANKS
@LaingRaven
@LaingRaven 7 ай бұрын
You're welcome :)
@cayde0667
@cayde0667 5 ай бұрын
How I drag the DatePicker class, it won't let me?
@devby9
@devby9 7 ай бұрын
your contents so .... I have a minor observation to share: to avoid creating whatever.putClientProperty(FlatClientProperties.PLACEHOLDER, "...." ); the trailing and leading components or icons, and also for labels (like h1, h2, etc.), I've added the FlatLaf library to the Swing palette as FlatLaf. This library contains all the usual Swing components, and I used them instead of the default components which offers a range of stylish components like FlatTextField, FlatButton, and FlatLabel ant it contains all the styling properties as methods, lable.setLableType(labletype.h1)... etc
@LaingRaven
@LaingRaven 7 ай бұрын
Good idea.Thank you
@chans0828
@chans0828 7 ай бұрын
can you create something like that Java Swing and MySQL Select, Insert, Delete, Update and will popup without using any libraries ? on one jframe
@javier8090
@javier8090 7 ай бұрын
Sry to bother but, would you know about a visual duplication glitch with jcomboboxes?(with any popupmenu really). When i use flatlaf look and feel and click on them, they start duplicating and bugging the whole screen. Ur videos are great btw, really nice stuff.
@dazzlepelobello
@dazzlepelobello 4 ай бұрын
How can I remove the title and x button of glasspane pop up?
@LaingRaven
@LaingRaven 4 ай бұрын
Try this : public class ModalNoHeader extends SimpleModalBorder { public ModalNoHeader(Component component, int optionType, ModalCallback callback) { super(component, null, optionType, callback); } @Override protected JComponent createHeader() { return new JLabel(); } }
@LaingRaven
@LaingRaven 4 ай бұрын
But use modal dialog library. check sample here: github.com/DJ-Raven/swing-modal-dialog/blob/main/demo/src/test/java/test/Test.java
@michael_fsanchez
@michael_fsanchez 7 ай бұрын
Bro, can you do a video using Toast Notifications on a maven project? i want to use your Notification Toast. thanks!
@LaingRaven
@LaingRaven 7 ай бұрын
Here you can check this use in IntelliJ : github.com/DJ-Raven/java-messenger/blob/a7dd470c0512a95cfc7e4efee7be9c6b7284a4de/messenger-client/pom.xml#L61-L81 and here library : github.com/DJ-Raven/java-messenger/tree/main/messenger-client/library
@michael_fsanchez
@michael_fsanchez 7 ай бұрын
@@LaingRaven the code in POM makes that the jar file of toast can be watch it but the line of code is markable in red, like a error, why?
@LaingRaven
@LaingRaven 7 ай бұрын
@@michael_fsanchez You use IntelliJ or Netbean ?
@michael_fsanchez
@michael_fsanchez 7 ай бұрын
@@LaingRaven Netbean bro the message is: 'dependencies.dependency.systemPath' for raven.toast:swing-toast-notifications:jar must specify an absolute path but is ${basedir}/external_libraries/swing-toast-notifications-1.0.2.jar 'dependencies.dependency.systemPath' for raven.toast:swing-toast-notifications:jar should not point at files within the project directory, ${basedir}/external_libraries/swing-toast-notifications-1.0.2.jar will be unresolvable by dependent projects ----
@michael_fsanchez
@michael_fsanchez 7 ай бұрын
@@LaingRaven i am using netbeans bro, the message is: 'dependencies.dependency.systemPath' for raven.toast:swing-toast-notifications:jar must specify an absolute path but is ${basedir}/external_libraries/swing-toast-notifications-1.0.2.jar 'dependencies.dependency.systemPath' for raven.toast:swing-toast-notifications:jar should not point at files within the project directory, ${basedir}/external_libraries/swing-toast-notifications-1.0.2.jar will be unresolvable by dependent projects ----
@evanescent7536
@evanescent7536 7 ай бұрын
why is the new data u just input not showing on the table? And where's delete and edit data, is there will be on part 3?
@LaingRaven
@LaingRaven 7 ай бұрын
Yes on part 3, now am current making, so it will upload soon 🙂
@harshjain6330
@harshjain6330 7 ай бұрын
how can I learn swing from scratch ?
@LaingRaven
@LaingRaven 7 ай бұрын
Check this swingtip : - website : java-swing-tips.blogspot.com/ - github : github.com/aterai/java-swing-tips
6 SQL Joins you MUST know! (Animated + Practice)
9:47
Anton Putra
Рет қаралды 226 М.
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
The Appointment & Recurrence Form in Scheduling for Java Swing
11:26
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 221 М.
I Redesigned the ENTIRE YouTube UI from Scratch
19:10
Juxtopposed
Рет қаралды 912 М.
7 Database Design Mistakes to Avoid (With Solutions)
11:29
Database Star
Рет қаралды 93 М.
Which Database Model to Choose?
24:38
High-Performance Programming
Рет қаралды 67 М.
Domain-Driven Design: The Last Explanation You'll Ever Need
21:05
Software Developer Diaries
Рет қаралды 16 М.
REAL or FAKE? #beatbox #tiktok
01:03
BeatboxJCOP
Рет қаралды 18 МЛН