Unable to validate other user names and passwords from the Domain or Network.

sunilvedula

Sunil
Local time
Tomorrow, 05:16
Joined
Jan 18, 2007
Messages
138
hi,:)

I am trying to validate the user name and password. The problem is I want any other user in the Domain to be able to login( his Domain user ID and password should be accepted ) except the person who has already logged in.

Is it possible?:confused: Please help!!!!

I am currently using the form TESTDB_verify_user_login which I found in Code Repository.
 
Maintain a "live" table that contains everyone currently logged in. (Either remove them or have a boolean field value that is LoggedIn=Yes or LoggedIn=No in that table.) If you are removing their entry, do a DLookup against that table for the person trying to login. If the DLookup returns anything but a NULL, they're already logged in. If you are using a checkbox, use a DLookup on the checkbox value.
 
yes i have been using window login form

it does work. but it returns only the person who is logged in information (username and password). i want it to be able to recognize all the users loggeed into the network. is it possible or am i asking for more.??
 

Users who are viewing this thread

Back
Top Bottom