encript

  • Thread starter Thread starter jervin via AccessMonster.com
  • Start date Start date
J

jervin via AccessMonster.com

Hi,

Is there a way to encript the password on this simple COMMAND BUTTON
protected code?
I dont want to put the password on OPEN form.

If InputBox("Enter Password") = "YourPassword" Then...

Just asking ....thanks
 
You mean you want asterisks or something to hide what's being typed in as a
password? No, it cannot be done with the InputBox function.

You'll have to pop up your own form which includes a textbox with its Input
Mask set to Password, and pass whatever's typed into that box back to your
original form.
 
thanks...
You mean you want asterisks or something to hide what's being typed in as a
password? No, it cannot be done with the InputBox function.

You'll have to pop up your own form which includes a textbox with its Input
Mask set to Password, and pass whatever's typed into that box back to your
original form.
[quoted text clipped - 5 lines]
Just asking ....thanks
 

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