Login Form

  • Thread starter accessuser via AccessMonster.com
  • Start date
A

accessuser via AccessMonster.com

I have frmpassword for all 13 depts, however I feel it might not be a good
for the long run. so I want to change to store my dept names and password
into a table. I read many posts and did a lot of research, but can't seem to
find a map for this problem.

I want to have a tblpassword with fields name of "department" "password" and
the third field i want something like if users input the dept and password
correctly, open their dept page.

Do I need to run a query for this? if so, how and what are the settings that
i need to do? Can someone give me some detail explaination.


Thank you!
 
J

John Vinson

accessuser via AccessMonster.com said:
I have frmpassword for all 13 depts, however I feel it might not be a good
for the long run. so I want to change to store my dept names and password
into a table. I read many posts and did a lot of research, but can't seem to
find a map for this problem.

Well, there aren't many maps because what you're doing is quite unusual, and
I'd almost have to say offtrack.

Rolling your own, nonstandard, private security system is a major and
complex undertaking; and - unless it's layered behind Access Workgroup
security - can be readily cracked by anyone with a modicum of expertise in
Access. It's MUCH harder to do this well than it is to implement workgroup
security.

The latter isn't perfect by any means, and can be hacked, though in practice
I haven't heard of many such instances. It's also complex, but securing a
database flexibly and effectively is simply a complex task and requires a
complex tool.

Have you tried using the standard security model (which could easily let you
use ONE form for all thirteen departments, based on a query selecting just
that department's data)? Have you consciously rejected it? If so, why?
 
A

accessuser via AccessMonster.com

Thanks John,

After a whole day research and playing with the code, I finally figured out
how to make it simpler and better. I create a frmlogon using information
base on a table, if match then open the forms assigned to that particular
dept. It is working great!!!!!! I got the code from the following site,
anyone who experiences same problem, might be worth it to take a look at it.

http://www.databasedev.co.uk/login.html

Thanks for mentioning about getting value from query. I was using table, but
changed to query. I wish I had known it long time ago, I had spent so much
time creating 13 different forms and linking them ....well, I learn from it.

Acutally I have another question now, but I will start a new post.

Thanks so much.
 
Top