I have wanted to ask. I have a table tlogin. user_nm the first field and second field pass. so when the login form, if I login as admin then there is a special menu for admin.

how to manage it? please help

ow....ya, I using access for database

Thx b4

link|improve this question

0% accept rate
Do you mean VBA? VBA is native to Access, that is, you create macros in Access itself. VB.Net is a different thing altogether. – Remou Dec 10 '10 at 12:46
What have you tried so far? – Dan Puzey Dec 10 '10 at 15:59
feedback

1 Answer

Usually, you'd use a flag or secondary table related to each user to indicate what "rights" the user has. For instance, if using bit flags, you might have an extra field in your user table called IsAdmin, which would contain true if it's an administrative user, false if not.

Then, once the user has logged in and you've validated the password, you can check the IsAdmin field, and if true, allow them access to the appropriate functions.

that's a simplistic method but it would work. You normally WOULD NOT want to base rights solely on the user's name.

link|improve this answer
can give me some examples ? please – existsman Dec 12 '10 at 7:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.