Java login system 👨‍💻

แชร์
ฝัง

ความคิดเห็น • 265

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +215

    //****************************************************
    public class Main {
    public static void main(String[] args) {

    IDandPasswords idandPasswords = new IDandPasswords();

    LoginPage loginPage = new LoginPage(idandPasswords.getLoginInfo());
    }
    }
    //****************************************************
    public class IDandPasswords {
    HashMap logininfo = new HashMap();

    IDandPasswords(){

    logininfo.put("Bro","pizza");
    logininfo.put("Brometheus","PASSWORD");
    logininfo.put("BroCode","abc123");
    }

    public HashMap getLoginInfo(){
    return logininfo;
    }
    }
    //****************************************************
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class LoginPage implements ActionListener{

    JFrame frame = new JFrame();
    JButton loginButton = new JButton("Login");
    JButton resetButton = new JButton("Reset");
    JTextField userIDField = new JTextField();
    JPasswordField userPasswordField = new JPasswordField();
    JLabel userIDLabel = new JLabel("userID:");
    JLabel userPasswordLabel = new JLabel("password:");
    JLabel messageLabel = new JLabel();
    HashMap logininfo = new HashMap();

    LoginPage(HashMap loginInfoOriginal){

    logininfo = loginInfoOriginal;

    userIDLabel.setBounds(50,100,75,25);
    userPasswordLabel.setBounds(50,150,75,25);

    messageLabel.setBounds(125,250,250,35);
    messageLabel.setFont(new Font(null,Font.ITALIC,25));

    userIDField.setBounds(125,100,200,25);
    userPasswordField.setBounds(125,150,200,25);

    loginButton.setBounds(125,200,100,25);
    loginButton.setFocusable(false);
    loginButton.addActionListener(this);

    resetButton.setBounds(225,200,100,25);
    resetButton.setFocusable(false);
    resetButton.addActionListener(this);

    frame.add(userIDLabel);
    frame.add(userPasswordLabel);
    frame.add(messageLabel);
    frame.add(userIDField);
    frame.add(userPasswordField);
    frame.add(loginButton);
    frame.add(resetButton);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(420,420);
    frame.setLayout(null);
    frame.setVisible(true);

    }
    @Override
    public void actionPerformed(ActionEvent e) {

    if(e.getSource()==resetButton) {
    userIDField.setText("");
    userPasswordField.setText("");
    }

    if(e.getSource()==loginButton) {

    String userID = userIDField.getText();
    String password = String.valueOf(userPasswordField.getPassword());

    if(logininfo.containsKey(userID)) {
    if(logininfo.get(userID).equals(password)) {
    messageLabel.setForeground(Color.green);
    messageLabel.setText("Login successful");
    frame.dispose();
    WelcomePage welcomePage = new WelcomePage(userID);
    }
    else {
    messageLabel.setForeground(Color.red);
    messageLabel.setText("Wrong password");
    }
    }
    else {
    messageLabel.setForeground(Color.red);
    messageLabel.setText("username not found");
    }
    }
    }
    }
    //****************************************************
    import java.awt.*;
    import javax.swing.*;
    public class WelcomePage {
    JFrame frame = new JFrame();
    JLabel welcomeLabel = new JLabel("Hello!");

    WelcomePage(String userID){

    welcomeLabel.setBounds(0,0,200,35);
    welcomeLabel.setFont(new Font(null,Font.PLAIN,25));
    welcomeLabel.setText("Hello "+userID);

    frame.add(welcomeLabel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(420, 420);
    frame.setLayout(null);
    frame.setVisible(true);
    }
    }
    //****************************************************

    • @samaltoveros4231
      @samaltoveros4231 3 ปีที่แล้ว +2

      How did you make the pasword like only dots?

    • @jalen744
      @jalen744 3 ปีที่แล้ว +4

      @@samaltoveros4231it's JPasswordField. it does that

    • @ZbumDemon
      @ZbumDemon 2 ปีที่แล้ว +1

      Missing in "IDandPasswords" in top " import java.until.HashMap; "

    • @joyceasante8292
      @joyceasante8292 ปีที่แล้ว

      Practicing(no copying and pasting)
      public class Main
      {
      public static void main (String[]args)
      {
      IDandPasswords idandPasswords = new IDandPasswords ();
      LoginPage loginPage = new LoginPage (idandPasswords.getLoginInfo ());
      }
      }
      *******************
      import java.util.HashMap;
      public class IDandPasswords
      {
      HashMap < String, String > logininfo = new HashMap < String, String > ();
      IDandPasswords ()
      {
      logininfo.put ("GlamorousCoder", "spicy");
      logininfo.put ("Faya", "POPPING");
      logininfo.put ("Ras", "berry809");
      }
      protected HashMap getLoginInfo ()
      {
      return logininfo;
      }
      }
      **********************
      import java.awt.*;
      import java.awt.event.*;
      import java.util.HashMap;
      import javax.swing.*;
      public class LoginPage implements ActionListener
      {
      JFrame frame = new JFrame ();
      JButton loginButton = new JButton ("Login");
      JButton resetButton = new JButton ("Reset");
      JTextField userIDField = new JTextField ();
      JPasswordField userPasswordField = new JPasswordField ();
      JLabel userIDLabel = new JLabel ("userID: ");
      JLabel userPasswordLabel = new JLabel ("password: ");
      JLabel messageLabel = new JLabel (" ");
      HashMap < String, String > logininfo = new HashMap < String, String > ();
      LoginPage (HashMap < String, String > loginInfoOriginal)
      {
      logininfo = loginInfoOriginal;
      userIDLabel.setBounds (50, 100, 75, 25);
      userPasswordLabel.setBounds (50, 150, 75, 25);
      messageLabel.setBounds (125, 250, 250, 35);
      messageLabel.setFont (new Font (null, Font.PLAIN, 12));
      userIDField.setBounds (125, 100, 200, 25);
      userPasswordField.setBounds (125, 150, 200, 25);
      loginButton.setBounds (125, 200, 100, 25);
      loginButton.setFocusable (false);
      loginButton.addActionListener (this);
      resetButton.setBounds (225, 200, 100, 25);
      resetButton.setFocusable (false);
      resetButton.addActionListener (this);
      frame.add (userIDLabel);
      frame.add (userPasswordLabel);
      frame.add (messageLabel);
      frame.add (userIDField);
      frame.add (userPasswordField);
      frame.add (loginButton);
      frame.add (resetButton);
      frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
      frame.setSize (380, 380);
      frame.setLayout (null);
      frame.setVisible (true);
      }
      @Override public void actionPerformed (ActionEvent e)
      {
      if (e.getSource () == resetButton)
      {
      userIDField.setText ("");
      userPasswordField.setText ("");
      }
      if (e.getSource () == loginButton)
      {
      String userID = userIDField.getText ();
      String password = String.valueOf (userPasswordField.getPassword ());
      if (logininfo.containsKey (userID))
      {
      if (logininfo.get (userID).equals (password))
      {
      messageLabel.setForeground (Color.green);
      messageLabel.setText ("login successful");
      frame.dispose ();
      WelcomePage welcomePage = new WelcomePage ("Welcome!");
      }
      else
      {
      messageLabel.setForeground (Color.blue);
      messageLabel.setText ("Wrong password");
      }
      }
      else
      {
      messageLabel.setForeground (Color.blue);
      messageLabel.setText ("username not found");
      }
      }
      }
      }
      *****************
      import java.awt.*;
      import javax.swing.*;
      public class WelcomePage
      {
      JFrame frame = new JFrame ();
      JLabel welcomeLabel = new JLabel ("Welcome!");
      WelcomePage (String userID)
      {
      welcomeLabel.setBounds (0, 0, 200, 35);
      welcomeLabel.setFont (new Font (null, Font.BOLD, 18));
      welcomeLabel.setText ("Welcome" + userID);
      frame.add (welcomeLabel);
      frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
      frame.setSize (380, 380);
      frame.setLayout (null);
      frame.setVisible (true);
      }
      }

    • @akhilmasanam1692
      @akhilmasanam1692 9 หลายเดือนก่อน +1

      protected to public

  • @michaeledie8474
    @michaeledie8474 2 ปีที่แล้ว +50

    you are more useful than any of my university professors

  • @petermwajinje6417
    @petermwajinje6417 ปีที่แล้ว +46

    It's a great video well and clearly explained. As a Java beginner, it has saved me time and the headache I could have gone through in class. Thank a lot. I wish if you could do a video of the same but with a connection to MySQL database where the IDs and passwords would be store in the database.

  • @Re9sTwitch
    @Re9sTwitch 3 ปีที่แล้ว +20

    Another great vid, very clear, well explained. Would be great to learn how you develop this code from scratch.
    Thanks again, keep up the great work!

  • @angelcastineira2561
    @angelcastineira2561 4 ปีที่แล้ว +4

    your videos are getting better and better, this one helped me understand a lot better some previous concepts. thanks!

  • @damiaofernandes9776
    @damiaofernandes9776 ปีที่แล้ว +1

    Muito bom que conteúdo Exemplar, que bacana e leve o jeito de fazer e explicar embora não entenda nada do que diz . Tá de parabéns Obrigado por compartilhar o seu conhecimento 👏

  • @antoniolima1456
    @antoniolima1456 2 ปีที่แล้ว +11

    O cara é magnifico, um vídeo bem explicativo e muito bem feito.
    Thanks

  • @amandatimmons5915
    @amandatimmons5915 2 ปีที่แล้ว +6

    I watched this video a thousand times this weekend and it helped me do and understand my homework assignment. thank you so much for such a good step by step video with explanations that are clear and easier to understand.

    • @dcwavie
      @dcwavie ปีที่แล้ว

      yall doing this for assignments lol tuff imagine doing it in class and mispellng HashMap by mistake.

  • @mrCetus
    @mrCetus 2 ปีที่แล้ว +1

    Hey Bro Code, thank You so much for dedicating the time to put this video together. It truly helped me to understand this new concept of Java for me.

  • @andromydous
    @andromydous 2 ปีที่แล้ว +7

    First, I'm so glad that I found your channel. I started messing with Java because I understand it better than my wife and she's leaning on me to help her with her college class. She's sitting at a B, because she suffers test anxiety and doesn't really put in the work. Her final project is using 2D arrays and it bugs me because her class is so slow. I learned so much more by watching your videos and I've only been learning for less than a month.
    Second, I created a rudimentary RPG text based console game (complete with main menu, shop menu, inventory for shop and player, player classes, enemies, and enemy classes, combat engine, and combat menu). What I learned from you helped tremendously. I mostly did it on my own, but there were a few times that I had to google something. While googling, I ran into 2 scenarios that irked me. Which leads me to number 3 (last one).
    Third, I ran into lazy people basically expecting others to do their work for them (almost like my wife) and elitist MF's. The lazy people only bothered me a little. In the end, they're only hurting themselves. Elitists, though. Those people piss me off. Nobody is born with all the knowledge and all the skills. No one is born at the top of their field. Everyone starts at the bottom/beginning at some point. Elitist either forget that, or they like to pretend that they skipped that part and became a god at whatever it is that they're doing. This mentality hurts other people and can even turn them away.
    Plus they seem that everyone can read the docs (or man pages) and automatically understand it. However, everybody learns differently. Me, I learn by doing. I can read stuff all day long, or listen to someone all day long, and I'll never understand it. I have to do it for it to stick in my mind. Sorry for being long winded. Thanks, again, for doing these awesome videos.

    • @makramziani2507
      @makramziani2507 2 ปีที่แล้ว +4

      bro i would hate to be your wife u bad mouth her way too much if it bothers u that she is lazy why did u marry her love her for who she is or dont waste her time

    • @andromydous
      @andromydous 2 ปีที่แล้ว

      @@makramziani2507 Where did you learn to read? The only "negative" thing I said is that instead of her practicing, she looks to me to do it for her. If you're in school to learn something, especially if it relates to your chosen field, you should put the work in. That's not being negative. That's just facts. Besides, I could care less what you think.

    • @makramziani2507
      @makramziani2507 2 ปีที่แล้ว +3

      @@andromydous ok habibi it might be facts that should be kept between you and her you can’t just go running around telling ppl how lazy your wife you might actually be one of the reasons she is lazy because you keep criticizing her you gotta be more supportive I am not tryna judge you or bad mouth you just an advice if you hate hearing this imagine her hating you hear she is lazy from you 🙄

    • @andromydous
      @andromydous 2 ปีที่แล้ว

      @@makramziani2507 Whatever, dude. Her and I have been married 22 years. I don't have to explain myself to you. If you can't read, then go get some help.

    • @sacmarv8997
      @sacmarv8997 ปีที่แล้ว

      @@andromydous you r married for 22yrs and ur wife is still in college 😟

  • @amedeekreuzer9190
    @amedeekreuzer9190 ปีที่แล้ว +1

    Thank you Bro Code, it all went very well and I could understand most of the code lines that you ecplained logically. Thank you very much!

  • @WhoBeSilly
    @WhoBeSilly 5 หลายเดือนก่อน

    Thanks bud, it brings me back to my CSc labs in college!

  • @adibkhan8332
    @adibkhan8332 3 ปีที่แล้ว +2

    My recent favorite TH-camr... Love from🇧🇩

  • @hariom6910
    @hariom6910 3 ปีที่แล้ว

    Please do as many projects as possible sir..Loved Your Concept..❤️ from india

  • @primeoptumas8435
    @primeoptumas8435 3 ปีที่แล้ว

    Thanks for such a wonderful video lecture😍.

  • @FilipeProKiller
    @FilipeProKiller 2 ปีที่แล้ว

    Thank you so much for this man, easy to follow and undestand

  • @azro7717
    @azro7717 2 ปีที่แล้ว +1

    As Java beginner, I've finished this after days of trying to understand 😁

  • @user-mi1rw3lb1z
    @user-mi1rw3lb1z 2 หลายเดือนก่อน

    Thank you very much ! Simple & easy and solved my pin point problems.

  • @gabrielantoniosaavedramart8109
    @gabrielantoniosaavedramart8109 2 ปีที่แล้ว

    Amazing explain and session of coding

  • @DC-xj2fe
    @DC-xj2fe ปีที่แล้ว

    Very helpful for Revature's Java course week 3 project 1 work.

  • @elsaeelias8159
    @elsaeelias8159 2 ปีที่แล้ว

    It is very interesting to learn to catch concept of develop design; I expect another better video from you,thank you so much.

  • @rorydaines3176
    @rorydaines3176 3 ปีที่แล้ว +4

    Please do one where you mentioned, grabbing user login info from a file that was stored on a db, that would be dope my bro.

  • @chitandaiscurious4597
    @chitandaiscurious4597 2 ปีที่แล้ว

    this is so much helpful

  • @justinbanza4751
    @justinbanza4751 2 ปีที่แล้ว

    very clear and helpful.
    Thank you for that video

  • @lalitpal6797
    @lalitpal6797 ปีที่แล้ว +1

    Awesome I like the explanation

  • @KangOdy
    @KangOdy ปีที่แล้ว

    thank you so much, after watching your videos I more interesting to practice Java .... Cheers

  • @hakanloyan3483
    @hakanloyan3483 2 หลายเดือนก่อน

    i added the back and exit buttons to welcome page easily, thx for video

  • @crackrokmccaib
    @crackrokmccaib 2 ปีที่แล้ว

    I have to know, when you make these videos for practical applications, do you just do them on the fly, or do you make them ahead of time, then troubleshoot them and get them perfected before making the tutorials?

  • @LuisFernando-qm5cs
    @LuisFernando-qm5cs 2 ปีที่แล้ว

    bro, thanks a lot, you showed an easier way to make the same thing comparing to the way that i was doing

  • @psyche2739
    @psyche2739 4 ปีที่แล้ว +5

    I hope you will create a tutorial about JavaDesignPattern or Android in your next video. Than you! :)

  • @developerjunior446
    @developerjunior446 3 ปีที่แล้ว +2

    Super,simple,interesting

  • @y.bgamesplayer
    @y.bgamesplayer 3 ปีที่แล้ว +2

    Wow I got some idea from your work Thank you

  • @joshuaraymond4996
    @joshuaraymond4996 2 ปีที่แล้ว

    Thank you for this amazin class

  • @enricoarcilla1095
    @enricoarcilla1095 2 ปีที่แล้ว

    very helpful for a beginners.

  • @canberkarslan998
    @canberkarslan998 3 ปีที่แล้ว +3

    İt is very helpful. Thank you so much!

  • @milanincana6395
    @milanincana6395 2 ปีที่แล้ว

    This was most of my school assignment, thanks.

  • @tuba_codes
    @tuba_codes ปีที่แล้ว

    That's true.. I enjoyed so much while wathcing this video. You expalained so well that I got it all ... Thankssssssss 🙃

  • @andrasfejes8988
    @andrasfejes8988 ปีที่แล้ว

    Thank you! Simply but awesome!

  • @yourtimepass1671
    @yourtimepass1671 ปีที่แล้ว

    All time best coding video Ever 🌟

  • @Lileminem93
    @Lileminem93 2 ปีที่แล้ว

    Awesome tutorial!
    Thank you Bro!

  • @radosmirkovic8371
    @radosmirkovic8371 6 หลายเดือนก่อน

    Great tutorial. Keep on with the good work.

  • @Una_Eeu
    @Una_Eeu ปีที่แล้ว

    This video is so helpful. Thank you.

  • @hasirakoswatta386
    @hasirakoswatta386 2 ปีที่แล้ว

    Thank You BroCode. Helped me alot!

  • @mohamedalaa5270
    @mohamedalaa5270 3 ปีที่แล้ว +1

    awesome

  • @user-zv2iw1lw4m
    @user-zv2iw1lw4m 2 ปีที่แล้ว

    Bro Code, you are such a genius!

  • @naguboyinachaitanya234
    @naguboyinachaitanya234 6 หลายเดือนก่อน +1

    Great Explanation BRo

  • @user-a554
    @user-a554 2 ปีที่แล้ว

    just what I needed, and it worked. thanks bro!!

  • @jamesLindsay-hl3yf
    @jamesLindsay-hl3yf ปีที่แล้ว

    quick question, why not just make the IDandPasswords class static, that way you won't have to make an instance of it in the main method?

  • @srimaria7718
    @srimaria7718 หลายเดือนก่อน

    it's easy to understand. Thankyou Bro Code

  • @eason6522
    @eason6522 7 หลายเดือนก่อน

    Thank you so much, you saved my life, by the way I love that there is a D&D file just chilling there

  • @lahikahmed9253
    @lahikahmed9253 8 หลายเดือนก่อน

    Thanks for your awesome content ❤

  • @kemann3815
    @kemann3815 2 ปีที่แล้ว

    Awesome

  • @marxLz
    @marxLz 2 ปีที่แล้ว +2

    Do you also have idea in using oracle database? Please release a tutorial for that too. 😊

  • @iwandamiri1002
    @iwandamiri1002 3 ปีที่แล้ว

    Thank you, this is helping me a lot

  • @acknowledgeme4510
    @acknowledgeme4510 4 ปีที่แล้ว +7

    rly interesting thank you.
    it would be nice to do it with a database (could you do it ?)

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว +13

      Yeah maybe for a future video. It gets complex

  • @365motivation.9
    @365motivation.9 ปีที่แล้ว

    Hello Bro
    I learned alot from your tutorials.

  • @smp2k252
    @smp2k252 2 ปีที่แล้ว

    your videos are soo helpful love from pakistan

  • @sam_nov
    @sam_nov ปีที่แล้ว

    Broo, thank you very much, this is exactly what I needed.

  • @abuhamza6817
    @abuhamza6817 3 หลายเดือนก่อน

    Thanks bro, this is so informative

  • @parthsuryavanshi2425
    @parthsuryavanshi2425 2 ปีที่แล้ว

    Just here to complete the 2nd step you mentioned at the end

  • @sergeyb6071
    @sergeyb6071 4 ปีที่แล้ว +2

    great stuff!

  • @CarlosHernandez-zy9fq
    @CarlosHernandez-zy9fq 2 ปีที่แล้ว

    Thank you so much, this video is great!

  • @Bianchi77
    @Bianchi77 10 หลายเดือนก่อน

    Nice video, well done, thank you for sharing it :)

  • @eliwolford08
    @eliwolford08 2 ปีที่แล้ว +2

    I was typing along with you till I realized you had the code below! LOL Thank you so much!

    • @manjulgautam7040
      @manjulgautam7040 2 ปีที่แล้ว

      so read the comment first LOL!

    • @stephanieezat-panah7750
      @stephanieezat-panah7750 2 ปีที่แล้ว

      Actually, Elizabeth, you did the right thing. typing code sets it in your head, and that is the important thing

  • @vincentbrycegarcia5750
    @vincentbrycegarcia5750 3 ปีที่แล้ว

    I want to make an inventory system from this. Does that mean I have to just create multiple constructors?

  • @juliusmutegi5530
    @juliusmutegi5530 2 ปีที่แล้ว

    great tutorial, thank you

  • @samlaliag
    @samlaliag หลายเดือนก่อน

    Thank you so much for making this Video!!!!

  • @mohamedmire8646
    @mohamedmire8646 2 ปีที่แล้ว

    Amazing

  • @Jayakrishnan-wg6pp
    @Jayakrishnan-wg6pp ปีที่แล้ว +1

    Nicee

  • @portuguesedjpt
    @portuguesedjpt 3 ปีที่แล้ว

    hi, is there a video that covers registering users via admin menu? something like that?
    i'm having trouble creating multiple users. you might know what's wrong based on what I will say:
    when I register a member, it goes into the .txt file. but as soon as I create another one, the last one is removed.
    I know where my mistake is, but I don't know how to go around it!
    any tips?

  • @omkarpatil9886
    @omkarpatil9886 3 ปีที่แล้ว +2

    Your voice is gooood❤️

  • @dmitry_belonozhko
    @dmitry_belonozhko 2 ปีที่แล้ว

    Very nice. Thank you

  • @augischadiegils.5109
    @augischadiegils.5109 3 ปีที่แล้ว +3

    Make more tutorial bro thanks! :)

  • @mosomiliardaru
    @mosomiliardaru ปีที่แล้ว

    this is a real chad. I hope to meet you one day, mr. bro

  • @dhruvkaith3160
    @dhruvkaith3160 3 ปีที่แล้ว

    Thanks really helped me out

  • @sheldor58
    @sheldor58 3 ปีที่แล้ว +1

    could you make a continue. How to create a account in this system? thanks for the nice tutorial

  • @cud9104
    @cud9104 ปีที่แล้ว

    thanks so much! although i hv a little problem, wherein my welcome page tab isn't displaying, overall, this tutorial is exceptional and helpful for me who's a beginner in java (GUI) .

    • @cud9104
      @cud9104 ปีที่แล้ว

      update: fixed it within 30 mins. ty chatgpt!

  • @gurkan8843
    @gurkan8843 ปีที่แล้ว

    i love your videos brooo
    your videos are so clear and short, essential

  • @ssela
    @ssela 3 ปีที่แล้ว +1

    If you can put source code on Github or somewhere it will be great... It look so messy on TH-cam comment. 😆 Thanks you for tutorial it really help me a lot.

  • @u12blue
    @u12blue 2 ปีที่แล้ว

    Wouldve loved it if you included user creation instead of it being already stated inside the code. But still great vid!

  • @whitefang20
    @whitefang20 2 ปีที่แล้ว

    Thankyou for the video!

  • @tarikakinci1369
    @tarikakinci1369 3 ปีที่แล้ว +3

    It would be very kind, if you could tell me how to add an image to JLabel, so that I can have an image on the welcome page. Thanks a lot for the professional explanation in this video!

    • @jbones2513
      @jbones2513 3 ปีที่แล้ว +4

      identifier.setIcon(new ImageIcon("path"));
      I reccomand watching his GUI video and going to the Label section

    • @tarikakinci1369
      @tarikakinci1369 3 ปีที่แล้ว +1

      @@jbones2513 Alright, thanks

  • @mdabdurrakib6965
    @mdabdurrakib6965 2 ปีที่แล้ว

    Thank you dear sir

  • @nehalayaaz9406
    @nehalayaaz9406 3 ปีที่แล้ว +1

    Thanks 😊

  • @zeshrecords8630
    @zeshrecords8630 2 ปีที่แล้ว

    Thanks Man it really helps me

  • @NHCS_AMOGH_PATIL
    @NHCS_AMOGH_PATIL ปีที่แล้ว

    Bro Code You are really a great man
    Thank you

  • @groundzero82
    @groundzero82 3 หลายเดือนก่อน +1

    This is very new to me since my teacher on senior highschool only taught me basics about this and then focused on teaching me how to use JFrame Form GUI...
    btw, does bro have a tutorial about JFrame Form GUI with those palettes that you can drag and edit? I searched around and only found those that I can hhardly understand...

    • @whoami-kv7gc
      @whoami-kv7gc 3 หลายเดือนก่อน

      this channel provided a 4hours long video about JAVA GUI ,check it you may find it helpful

  • @charan8254
    @charan8254 ปีที่แล้ว

    You are uploading videos are more useful for me 'Thanks Bro'
    can you upload how to connect with server our application videos

  • @OnePieceDose
    @OnePieceDose 3 ปีที่แล้ว

    Thank you, helped me a lot. You saved my grades. hahah

  • @janaafc3120
    @janaafc3120 2 ปีที่แล้ว +1

    super

  • @calebchinayan7242
    @calebchinayan7242 ปีที่แล้ว

    👏👏👏

  • @ludovicbocquet9783
    @ludovicbocquet9783 8 หลายเดือนก่อน

    Really really good job, thank you !

  • @weruierhiugeirg
    @weruierhiugeirg 3 ปีที่แล้ว +2

    Can you make a second video on this for multiple details?
    Luke for a product were each cystomer got there own login info. Or can you do that with this obe aswell?

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +4

      You would probably want to connect to a database for functionality such as that. I would need to release a database playlist first tho

    • @lukel4903
      @lukel4903 5 หลายเดือนก่อน

      ​@BroCodez do you have a database playlist yet? It would be reallllly useful

  • @NEO-wl9ox
    @NEO-wl9ox 10 หลายเดือนก่อน

    I think instead of ambiguously circuitous welcomlabel with new comstructor
    jOptionPane might be more effacacious to break down some some complexity

  • @guydusol9370
    @guydusol9370 2 ปีที่แล้ว

    hi, great tutorial, but does this work also when you have multiple users loging in that code ? thx for the answer;

  • @ricardoreis4172
    @ricardoreis4172 2 ปีที่แล้ว

    Excelent Bro

  • @luizsantos9330
    @luizsantos9330 หลายเดือนก่อน

    Good

  • @shikharkhare6960
    @shikharkhare6960 ปีที่แล้ว

    Hi, great video, very well explained, could you pls help me out a little, In this video you are doing many imports ,but in my eclipse the import option is not coming for listener method

  • @veramay9035
    @veramay9035 6 หลายเดือนก่อน

    amazing!

  • @Khaled7AI
    @Khaled7AI ปีที่แล้ว

    Thank bro