I have a Log in form which connect to database to check username and password, in this User table I have a roleID which is FK from Role table (RoleID, Name, Description)
In C# Windows form application, I would like to check if it is "Admin" then show some text box on different form,
How can I implement code for this.
Thank you.