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

Sdílet
Vložit
  • čas přidán 17. 01. 2021
  • 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

Komentáře • 26

  • @sunilgayakawad3123
    @sunilgayakawad3123 Před 8 dny

    Brilliant work!!

  • @tayyabatfarms
    @tayyabatfarms Před rokem

    Simple, to the point n well explained

  • @jospelzer6835
    @jospelzer6835 Před 5 měsíci

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

  • @salemkraidi3530
    @salemkraidi3530 Před 2 lety +1

    Thanks for sharing this knowledge brother. this is really helpful

  • @MuhammadIrfan-fm1yw
    @MuhammadIrfan-fm1yw Před 4 měsíci

    😊Good work especially for beginners

  • @shanaraj6580
    @shanaraj6580 Před měsícem

    Thank you so much sir

  • @user-td7jo2rr1t
    @user-td7jo2rr1t Před 6 měsíci

    Great content, thank you.

  • @kessellegahimbare3598
    @kessellegahimbare3598 Před 10 měsíci

    thanks a lot you helped me so much

  • @ashnamonebhurrun6155
    @ashnamonebhurrun6155 Před 4 měsíci

    Thank you so much

  • @emna1919
    @emna1919 Před 2 měsíci

    Thanks a lot

  • @nadiamarzouki2299
    @nadiamarzouki2299 Před rokem

    Thanks so so sososososos much

  • @michaeldansodarkwah3436

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

  • @yinyinmay871
    @yinyinmay871 Před 7 měsíci

    Thank you

  • @rahulmittal1414
    @rahulmittal1414 Před 19 dny

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

  • @Kpellehboyk
    @Kpellehboyk Před rokem

    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.

  • @NoorhishamAppsheet
    @NoorhishamAppsheet Před 8 měsíci

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

  • @aIimranAli
    @aIimranAli Před 10 měsíci +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

  • @jagadishshirsath5268
    @jagadishshirsath5268 Před rokem

    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

  • @rajanjohn4657
    @rajanjohn4657 Před 3 lety +2

    Pls..copy this all program in command box

    • @sagar.banjade.5
      @sagar.banjade.5  Před 3 lety +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 Před rokem

      @Vinotha Narms you correct 💯 bugs 🐞

  • @Lusandro
    @Lusandro Před rokem

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

  • @keshwar000ravindra
    @keshwar000ravindra Před 4 měsíci

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

  • @mrfaradheere3987
    @mrfaradheere3987 Před rokem +1

    1404