Posted to microsoft.public.excel.programming
|
|
Input Box
Hi
See
http://www.xcelfiles.com/API_09.html
on this.
HTH. Best wishes Harald
"Steph" skrev i melding
...
Hello. Given the snippet of code below, is there a way to have the entry
into the InputBox show as *'s rather than what the user is actually
typing?
I know you can do that with a form, but not sure about an InputBox.
Thanks!
Rsp = InputBox("Enter the password to unprotect the worksheets")
If Rsp < Password Then
MsgBox "Incorrect password", vbOKOnly
Exit Sub
End If
|