MS Access Visual Basic Coding Input Box

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • KezerKing
    New Member
    • Apr 2008
    • 1

    MS Access Visual Basic Coding Input Box

    Hi there, I am just wondering if it is possible to have the input box script:
    InputBox(Passwo rd, Password) to have the view of what is inputted set in *'s

    Laters,
    Kieran
  • ADezii
    Recognized Expert Expert
    • Apr 2006
    • 8834

    #2
    Originally posted by KezerKing
    Hi there, I am just wondering if it is possible to have the input box script:
    InputBox(Passwo rd, Password) to have the view of what is inputted set in *'s

    Laters,
    Kieran
    To the best oy my knowledge, this cannot be done with an InputBox, namely, characters you Input cannot be masked. Whay you need is a Text Box on a Form with its the InputMask property set to 'Password'. Any character typed in the Text Box is stored as the character but is displayed as an asterisk (*).

    Comment

    Working...