Mask InputBox entry

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

Excel 2000.

Is it possible to mask the entry in an InputBox? I have a InputBox that a
user enters a password and this in turn runs a routine, I would like to show
* astrics as opposed to what they actually type, is this possible?

Thanks, Robert
 
You can specify a password mask for a TextBox, using the PasswordChar
method. eg

TextBox1.PasswordChar = "*"

or in the properties set the passwordchar to *
 
Nigel,

I'm I correct in thinking that TextBox would be added to a userform? Is
there a way to mask without a creating a userform.

Thanks, Rob
Nigel said:
You can specify a password mask for a TextBox, using the PasswordChar
method. eg

TextBox1.PasswordChar = "*"

or in the properties set the passwordchar to *






----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption
=---
 
Hi Rob

No.
(- or possibly maybe with extensive Windows programming, if so it's far more
work and a more unstable result than if you just make a simple form.)

HTH. Best wishes Harald
 
Rob,

Yes, it would require a userform. In my view the best method.

Cheers
Nigel
 
Ivan,

Just the job thanks and a really useful web site to visit, gained lots of
ideas.

Great stuff. Rob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top