Password protect a field

spn200286

Registered User.
Local time
Today, 08:58
Joined
Feb 7, 2005
Messages
56
is it possible to make a certain field in a form password protected to edit (but avaliable for everyone to view)

if that makes sence, just say if more detail is needed
 
The only way would be to build your own little routine that unlocked it.
 
The only way would be to build your own little routine that unlocked it.
and here i was hoping there was a nice bit of VBA that would just ask for a password, umm, any sugestions about how to go about that? :P
 
There is some VBA - I used this here when I needed to do it:

http://www.tek-tips.com/faqs.cfm?fid=4617

That will bring up an input box to use to enter a password, and it will mask the password.

You can set your text field to locked, and on double click have it bring up the password input and have a password in the VBA code to compare that to. If it matches, unlock it. Be sure to handle making sure that it is locked again depending on what you want.
 

Users who are viewing this thread

Back
Top Bottom