VB.Net Tutorial - Build Login and Registration form with MS Access

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • In this video, I will show you how to build Login and Registration Form using VB.Net in Visual Studio with MS Access.
    *
    *
    *
    ------ (CONTAIN TOPICS) --------
    - BUILD APPLICATION USING VB.Net
    - LOGIN AND REGISTRATION FORM
    - MS ACCESS
    - BUILD LOGIN AND REGISTRATION FORM IN JAVAFX WITH MS ACCESS
    and many more....
    --- (MUSIC) ----
    Angel’s Dream - Aakash Gandhi
    Anton - Dan Bodan
    Arms of Heaven - Aakash Gandhi
    Beneath the Moonlight - Aaron Kenny
    Beseeched - Asher Fulero
    Bittersweet Waltz - Sir Cubworth
    Dream Of The Ancestor - Asher Fulero
    Dreamland - Aakash Gandhi
    Drops of Earth - Aakash Gandhi
    Falling Snow - Aakash Gandhi
    Frozen in Love - Aakash Gandhi
    Heavenly - Aakash Gandhi
    If You Close Your Eyes I'm Still With You - Late Night Feeler
    In The Throes - Asher Fulero
    Invisible Beauty - Aakash Gandhi
    Kiss the Sky - Aakash Gandhi
    Lifting Dreams - Aakash Gandhi
    - Marcoman
    #visualbasicforapplications #visualbasic

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

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

    Hie Marco, i followed your steps exactly and I keep getting an error saying ACE.OLEDB.12.0 not registered on the local machine

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

    why my vb said The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.

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

    I really love your works

  • @vuhoang-wi2dg
    @vuhoang-wi2dg 3 หลายเดือนก่อน

    Works good for me. Thanks!

  • @Taytay-yy1hn
    @Taytay-yy1hn 4 หลายเดือนก่อน

    works perfectly thanks mate

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

    Bro, I don't have the Me keyword for my visual studio 2022, what is the alternative way for this?

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

    Good tutorial, just wondering once the user is found with the correct password, let's say i have another column with the fullname of the user, how could i retrieve that and display it like you did in the welcoming label?

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

      Hello, you can do this method
      Connection connect;
      PreparedStatement prepare;
      ResultSet result;
      String sql = "SELECT full_name, username FROM TABLE_NAME WHERE username = '"+ textfield_username.getText() +"' ";
      String fullN = "";
      try{
      prepare = connect.prepareStatement(sql);
      result = prepare.executeQuery();
      if(result.next()){
      fullN = result.getString("full_name");
      }
      label_fullName.setText(fullN);
      }catch(Exception e){
      e.printStackTrace();
      }
      We used username of the user as our reference to retrieve user's full name

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

    Hello MacroMan
    I need your help
    Kindly, generate pdf in javafx

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

      Sorry, but what do you mean generate PDF in JavaFX?