Hello

I am using following code for asking user to input password to give some access-

Code-
Public Function Check_Security_Password() As Boolean
Dim inputstring As String
inputstring = InputBox("Enter Password")
If inputstring = "5555" Then
Return True
ElseIf inputstring = "" Then
Return False
Else
MsgBox("!!! Wrong Password !!!")
Return False
End If
End Function

Code is running fine. However is it possible for INPUTBOX to take user input password in "xxxxx" format to keep password secure ?