Putting a Password InputMask in an Inputbox ?

  • Thread starter Thread starter Don Garry
  • Start date Start date
D

Don Garry

I've got the following code for an Inputbox and am wondering if there is a
way of putting a password input mask on this code without having to create a
textbox control ?

strMsg = "Enter the Password"
strInput = InputBox(Prompt:=strMsg, _
Title:="Password", XPos:=2000, YPos:=2000)
 
Back
Top