encript

  • Thread starter jervin via AccessMonster.com
  • 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
 
D

Douglas J. Steele

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.
 
J

jervin via AccessMonster.com

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
 
Top