+ Reply to Thread
Results 1 to 3 of 3

changing the password letters to "*" in an input box.

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-20-2013
    Location
    Ann Arbor, MI
    MS-Off Ver
    Excel 2010
    Posts
    255

    changing the password letters to "*" in an input box.

    Hi,

    I'm currently using this code:

    Private Sub Contractorsbtn_Click()
    
    Const PW As String = "steel123"
    
        If InputBox("Enter password to continue", 2) = PW Then
            Contractors.Show
        Else: MsgBox "Wrong password"
        
        End If
    End Sub
    how do I change it so that instead of the actual password appearing, it shows up as, '*'

    (I tried the ',2' based off of another post but it is not working.)

    Thanks!

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: changing the password letters to "*" in an input box.

    Hi, emilyloz,

    only by help of API itīs possible to hash the characters in an Inputbox while you may better utilize a UserForm with a textbox where you may choose the PasswordChar.

    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Forum Contributor
    Join Date
    05-20-2013
    Location
    Ann Arbor, MI
    MS-Off Ver
    Excel 2010
    Posts
    255

    Re: changing the password letters to "*" in an input box.

    Thanks HaHoBe,

    I created another tab on my user form, set the other tabs to 'visible = false' and I am now using this code:

    Private Sub SubmitPassBTN_Click()
    Const PW As String = "steel123"
    
    If Passwordtb.Value = PW Then
        MultiPage1.Pages("Page2").Visible = True
        MultiPage1.Pages("Page3").Visible = True
        MultiPage1.Pages("Page1").Visible = False
    Else
        MsgBox ("Wrong Password")
        Passwordtb.Value = ""
    End If
    
    
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1