Results 1 to 8 of 8

I want a input box to show * instead of text when info is entered

Threaded View

  1. #1
    Forum Contributor
    Join Date
    04-18-2013
    Location
    utah
    MS-Off Ver
    2010
    Posts
    668

    I want a input box to show * instead of text when info is entered

    I have and input box where employees enter a password, how do i change the code so that instead of showing the text it shows *. Thanks for any help
    Private Sub cmb4_change()
        Dim pwd As String
        Dim Oops As Boolean
        
        If LockEvent Then Exit Sub
        LockEvent = True
        'Application.EnableEvents = False
        
        pwd = Application.InputBox("Password for " & cmb1.Value & ":", "Enter Password", Type:=2)
        If pwd = "" Then
            cmb1.Value = ""
            LockEvent = False
            'Application.EnableEvents = True
            Exit Sub
        End If
                
        Select Case cmb1.Value
            Case "J. Flack"
                If pwd <> jflack Then Oops = True
            Case "C. Robinson"
                If pwd <> crobinson Then Oops = True
            Case "O. Contreras"
                If pwd <> ocontreras Then Oops = True
            Case "R. Saling"
                If pwd <> rsaling Then Oops = True
            Case "T. Pace"
                If pwd <> tpace Then Oops = True
            Case "A. Curtis"
                If pwd <> acurtis Then Oops = True
            Case Else
                Oops = True
        End Select
         
        If Oops Then
            MsgBox "Bad password"
            cmb1.Value = ""
        End If
        
        LockEvent = False
        'Application.EnableEvents = True
    Last edited by arlu1201; 10-17-2013 at 07:55 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. formulas for (info input in worksheet1 to show up on worksheet2)
    By loled in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-02-2013, 05:32 AM
  2. auto input text in 'a' when text entered in 'b'
    By crizzle in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 06-17-2008, 03:20 PM
  3. VBA to show certain text when a number is entered into a cell
    By jiminic in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 02-01-2008, 12:34 AM
  4. Input box appears with text entered...
    By ChrisMattock in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-14-2007, 10:46 AM
  5. Replies: 6
    Last Post: 08-18-2005, 07:05 PM

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