Java Project Tutorial - Login and Register Form Step by Step Using NetBeans And MySQL with FREE Code

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 มี.ค. 2020
  • Java Project Tutorial - Login and Register Form Step by Step Using NetBeans And MySQL with FREE Source Code
    ▶ Source: To be uploaded soon.
    ----------------------------------- Project Description -----------------------------------
    in this java tutorial we will see how to Design a login and Register form and Connect This Two Forms With MySQL Database.
    What We Will Use To Build This Project ? :
    - Java Programming Language.
    - NetBeans Editor.
    - MySQL Database.
    - PhpMyAdmin.
    What We Will Do In This Project ? :
    - design the two forms using JFrame form
    - create a connection between java and mysql.
    - create a jbutton on each window one to login and the seconde to create a new account.
    - create a mysql database to store the users data.
    - check if the username or password are empty.
    - in the register jframe check if the fields are empty
    and if the user renter the correct password .
    - check If the user enter a username that already exists.
    Java Swing Components We Will Use In This Project:
    - JFrame
    - JPanel
    - JTextfield.
    - JButton.
    - JLabel.
    ----------------------------------- Other Tutorials -----------------------------------
    ▶ Your First Java GUI - • Java - First GUI Simpl...
    ▶ Java POS Demo - • Student Project: Java ...
    ----------------------------------- JavaFX Tutorials -----------------------------------
    ▶ 1 - Introduction to JavaFX - bit.ly/32Qqom3
    ▶ 2a - Setting up with Eclipse -
    ▶ 2b - Setting up with Netbeans - bit.ly/2IjXXmQ
    ▶ 3 - Your First JavaFX Application - bit.ly/2TNdQHV
    ▶ 4 - Using Lambda Expressions - bit.ly/38FXQwF
    ▶ 5 - Integerating SceneBuilder - bit.ly/2Q0Oe9D
    ▶ 6 - Adding Controllers to FXML - • JavaFX Tutorial for Be...
    ▶ 7 - Styling with CSS - • JavaFX Tutorial for Be...
    ▶ 8 - How to build a Calculator Part 1 - • JavaFX Tutorial for Be...
    ▶ 9 - Build a Calculator app - • JavaFX Tutorial for Be...
    ▶ 10 - Build a Login app - • JavaFX Tutorial for Be...
    ▶ 11 - Using ImageView - • JavaFX Tutorial for Be...
    ▶ 12 - ComboBox in JavaFx - • JavaFX Tutorial for Be...
    ▶ 13 - ListView in JavaFX - • JavaFX Tutorial for Be...
    ▶ 14 - TreeView in JavaFX - • JavaFX Tutorial for Be...
    ▶ 15 - FileChooser - • JavaFX Tutorial for Be...
    ★★★ Get In Touch ★★★
    JavaFX Facebook Group: bit.ly/2TC9HX4
    #javatutorial #login #register
    Tags:
    login form java,register form java,signup form in java,java tutorials,how to create login form in java,connecting to database in java,java jdbc tutorials

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

  • @xemacscode
    @xemacscode  2 หลายเดือนก่อน +1

    To those asking for the icons, you can download an app called Icons8. It contains a lot of free to use images and icons.

  • @fenderletmedownsham
    @fenderletmedownsham 11 หลายเดือนก่อน +2

    thanks so much, best tutorial i've seen on this topic!

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

    I had some trouble with source libraries. It's as if Java is being cunning in the process of compiling code. it finally worked. Thank you.

  • @ryuugaeisen8946
    @ryuugaeisen8946 ปีที่แล้ว +8

    Source code: to be uploaded soon...
    3 yrs later💀

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

    THANKS FOR YOUR SUPPORT ON MY ASSIGNMENT

  • @banogbanogangelul.7420
    @banogbanogangelul.7420 ปีที่แล้ว

    Thank you

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

    please how can I validate for an already existing users?

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

    thanks

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

    Where do you get the images for the form

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

    We need the icons plez.....

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

    Thank you!!
    but can you tell me where did that icons came from?

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

      yeah, have been wondering.

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

      @@MuhidiNabdul768 I know its already late to reply but it is a Pichon Icons

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

      @@minecraftgirlangle thanks

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

      @@minecraftgirlangle Can I asked where should I get the connector link?

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

      @@minecraftgirlangle Thank you

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

    8:55 Tried running Jframe for test drive, nothing pops up. It keeps telling that there is no (main class found)

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

      Maybe you created a JPanel instead of JFrame?

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

    Hello can I asked where can i find connector?

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

    if I don't put address it will save in database? what should I use code for all filled most be have a value or else it will not save..
    please help.. need asap ty

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

      you just have to check if the value is empty like:
      String address = txtAddress.getText().toString();
      if(address.length < 1) {
      System.out.println("Please enter valid address");
      }else{
      //proceed to save.
      }

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

      thanks it's help me alot

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

    click bait, code not found

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

    Where did you copied the mysql connector? you just paste it directly?? 35:51

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

    When i export this, why does it say error while connecting to db ?
    i even exported my sql connector
    help me please

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

    Please help me how to get your mysql connector? Please i want this for my project in scholl huhuhu

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

    Source code in Git?

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

    can you upload source code please?thankyou

  • @s.i.os.i.o5687
    @s.i.os.i.o5687 7 หลายเดือนก่อน

    where is the source code bro?

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

    Please tell me where I get the code
    Because you are silent there is sound

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

    bakit po there were error while connecting to db. po? how to fix this po :(

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

      ano nalabas na error?

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

    Is there no audio to this, or am I missing something?

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

      no audio... u have to download it separately

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

    Please send source code

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

    code?

  • @s.jayalakshmim.subramani4376
    @s.jayalakshmim.subramani4376 3 ปีที่แล้ว +1

    Send the code pls..

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

    Can you upload the source code please?

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

    where is code

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

    Hello Good day can I asked where can I get Icons like yours?

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

      If you find the Icons like this then please tell me also...

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

      isn't it pichon?

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

    can u plz give me your icon library you use

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

      Try this for an alternative: Login form online without hosting with google apps script th-cam.com/video/zbH-6r2QjP4/w-d-xo.html

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

      its called pichon
      you can download it in the microsoft store

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

    Can you upload the source code

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

    code pls?

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

    send the code pls

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

    where source

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

    can you give us code

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

    Code?

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

    how can you have the registered button at the startup of the software, that means anybody can register and log on to the application.
    not interesting.. but good job for the rest

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

      but, you can have an admin account that will verify each registration. The admin can approve/reject the registration.

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

      @@xemacscode so how do you have an admin account? - that is what I have been thinking about?

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

    this video has no sound

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

    very fraustrating for newbies, just cutted that connector part without showing or explaining and i guess professionals are not gonna watch this videos right, better take care of these things, you will get more views!!👎

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

    No sound

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

    JA JA JAAA A ES UNA VERDADERA TOMADURA DE PELO PEOR Q PITON EJM CUALQUIER PROGRAMA .JAVA TE DARA 80 000 ERRORES UNO POR CADA VERSION DE JAVA PORLOTANTO MEJOR ES MDDRL A LA MM.

  • @Black-xy4pj
    @Black-xy4pj ปีที่แล้ว

    I clicked clean and build and now I'm getting this error, please help me. What's the reason for this?:
    -------< project3.orderman.invoice.login:orderMan-invoice.login >-------
    Building orderMan-invoice.login 1.0-SNAPSHOT
    --------------------------------[ jar ]---------------------------------
    The POM for anyvalue:mysql-connector-j:jar:8.0.31 is missing, no dependency information available

  • @smail-yq7sc
    @smail-yq7sc 3 ปีที่แล้ว +1

    code ?

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

    Send me source code link

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

    Can you upload the source code please?