MS Excel Userform Login ID Password Creation (Step by step Guide)

Поділитися
Вставка
  • Опубліковано 5 жов 2024
  • Don't Click This: bit.ly/3q89CcY
    This tutorial will demonstrate the designing and coding of user form login ID Password protection for your excel based software and worksheet
    You will get to know
    1) Coding of vba userform login id password
    2) excel vba project
    3) userform project
    If you have any doubt you can ask questions on my Instagram also
    / sagar.banja. .
    #LoginForm #VBA #ExcelVBAUserform

КОМЕНТАРІ • 26

  • @latoyabernhart1781
    @latoyabernhart1781 Місяць тому

    This tutorial was awesome! Thank you so much!!

  • @salemkraidi3530
    @salemkraidi3530 2 роки тому +1

    Thanks for sharing this knowledge brother. this is really helpful

  • @jospelzer6835
    @jospelzer6835 7 місяців тому

    Thanks for sharing your knowledge. It was the information i've bin searchin for.

  • @tayyabatfarms
    @tayyabatfarms Рік тому

    Simple, to the point n well explained

  • @kessellegahimbare3598
    @kessellegahimbare3598 Рік тому

    thanks a lot you helped me so much

  • @sunilgayakawad3123
    @sunilgayakawad3123 2 місяці тому

    Brilliant work!!

  • @shanaraj6580
    @shanaraj6580 3 місяці тому

    Thank you so much sir

  • @AmruthNayak-g7w
    @AmruthNayak-g7w 8 місяців тому

    Great content, thank you.

  • @aIimranali
    @aIimranali Рік тому +1

    When I Microsoft Excel file in a VBA project
    Enter the login ID and password.
    Once I open it, it asks for login name and password
    But when I open it the second time the file opens without the password

  • @Kpellehboyk
    @Kpellehboyk Рік тому

    Thanks for the video, but my question is in case I forgot my password how will I regenerate it? Because in the login page there’s nothing showing like FORGET PASSWORD.

  • @rahulmittal1414
    @rahulmittal1414 2 місяці тому

    sir when i open developer tab property sheet changes not visible in bottom.

  • @MuhammadIrfan-fm1yw
    @MuhammadIrfan-fm1yw 7 місяців тому

    😊Good work especially for beginners

  • @michaeldansodarkwah3436
    @michaeldansodarkwah3436 2 роки тому

    Pls....do you have to go through the same process to create for another user

  • @ashnamonebhurrun6155
    @ashnamonebhurrun6155 6 місяців тому

    Thank you so much

  • @nadiamarzouki2299
    @nadiamarzouki2299 Рік тому

    Thanks so so sososososos much

  • @jagadishshirsath5268
    @jagadishshirsath5268 2 роки тому

    Sir My VBA Application OverAll Activity Complete Insert update Display But Login After Display Menubar Form Click to file menu Select Any option click after Hung Problem Create
    Excel Has Stop Working
    plz Any Solution This Problem So Reply mi

  • @keshwar000ravindra
    @keshwar000ravindra 6 місяців тому

    Hi, lot of people having doubts here... can you please help us

  • @yinyinmay871
    @yinyinmay871 9 місяців тому

    Thank you

  • @NoorhishamAppsheet
    @NoorhishamAppsheet 10 місяців тому

    do you have tutorial login multi user? not 1 user only

  • @Lusandro
    @Lusandro Рік тому

    Where is the user form pulling the username and password info from?

  • @rajanjohn4657
    @rajanjohn4657 3 роки тому +2

    Pls..copy this all program in command box

    • @sagar.banjade.5
      @sagar.banjade.5  3 роки тому +7

      Code to activate workbook
      Private Sub Workbook_Activate()
      Application.Visible = False
      UserForm.Show
      End Sub
      Code for Login
      Private Sub cmdLogin_Click()
      If txtName.Text = "Admin" And txtPassword.Text = "Password" Then
      MsgBox "You have unlock the file successfully"
      Application.Visible = True
      Unload Me
      Else
      MsgBox "Please enter correct Username and Password"
      txtName = ""
      txtPassword = ""
      End If
      End Sub

    • @jbtejada
      @jbtejada Рік тому

      @Vinotha Narms you correct 💯 bugs 🐞

  • @mrfaradheere3987
    @mrfaradheere3987 Рік тому +1

    1404