How to Create Login Form in Microsoft Access | Multi User|

Поделиться
HTML-код
  • Опубликовано: 7 янв 2025

Комментарии •

  • @MalikZahoorkhan-w7o
    @MalikZahoorkhan-w7o Год назад +2

    nice sir g

  • @bobby_ben
    @bobby_ben Год назад +2

    If I input same Username with a random password,it works still. How do I fix the same username not to use a random password?

    • @DynamicProgrammer1
      @DynamicProgrammer1  Год назад

      No bro random password is not working cheek your vba code

    • @PritamSingh9119
      @PritamSingh9119 Год назад

      Use "Or" instead of "And". Still this code has some flows like even if one you provide one password from the table it will still work.

  • @jossurbab
    @jossurbab 4 месяца назад +1

    Any username with right password opens main form🤔🤔🤔

  • @silentqueen4838
    @silentqueen4838 10 месяцев назад

    User name missing operater error showen by login form

  • @Peregas
    @Peregas Год назад +1

    Why i cant use two words for example "admin username"
    Reference 14:20

    • @Peregas
      @Peregas Год назад

      It became error or something

  • @nurfatinhalwaizzatimohdari2433
    @nurfatinhalwaizzatimohdari2433 Год назад +2

    blur view for command

  • @acrobaticboy7604
    @acrobaticboy7604 12 дней назад +1

    Run-Time error 2471 The expression you entered as a query parameter produced this error :"Password"

  • @mathematicsandphysics4233
    @mathematicsandphysics4233 8 месяцев назад

    How to use this left heavy comma ❛

    • @mathematicsandphysics4233
      @mathematicsandphysics4233 8 месяцев назад

      1 More thing what is placed after 2nd time username and password in login form. Is it inverted commas?

  • @farooqkahn2847
    @farooqkahn2847 Год назад

    Sound is off in video

  • @farooqkahn2847
    @farooqkahn2847 Год назад

    Sir please start access

  • @acrobaticboy7604
    @acrobaticboy7604 12 дней назад

    Where is mistake can you tell me ? Private Sub Command7_Click()
    If (IsNull(DLookup("UserName", "lbl_Login", "Username ='" & Me.txtuser & "'"))) And _
    (IsNull(DLookup("Passsword", "lbl_Login", "Passsword ='" & Me.txtpassword.Value & "'"))) Then
    MsgBox "Username or Password is incorrect", vbCritical, "Check You Credentials"
    Else
    MsgBox "Welcom to Database"
    DoCmd.OpenForm "MainForm", acNormal
    DoCmd.Close acForm, "Login", acSaveYes
    End If