Thread: passwords
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default passwords

Are you just querying for the users name so you can personallize your code
with stuff like

sname = Inputbox("Please enter your name: " )
ans = msgbox( "Hi " & sname & "!!" & vbNewLine & vbNewline & _
"Ready to go to work", vbYesNo)

If you were thinking this would offer some kind of protection, guess again.

But this is asked frequently and gets plenty of suggestions about hiding all
sheets and so forth. You can query google

http://groups.google.co.uk/advanced_...blic.E xcel.*

As a start search on the terms

hide all except

with author Wilson

----
then try

protect login

with no author

--
Regards,
Tom Ogilvy

wrote in message
oups.com...
i am developing a mutiuser program, and i am looking for tips on
developing user logins via a userform, is there ay good examples
around.

johny