Sunday, January 12, 2020

Assignment Section B

Create this table:

tblUsers
user_id AI
user_fullName Text(50)
user_username Text(20)
user_password Text(20)
user_level int

1. Create a data entry for the users table
2. Create a login form using the users inputted in the users table. Make the login form as the startup form.

How to pass data from one form to another:

https://www.c-sharpcorner.com/UploadFile/834980/how-to-pass-data-from-one-form-to-other-form-in-windows-form/

In your login form (fmrLogin), initialize a public static variable for the user's full name. Assign a value to the variable when the user clicks Login Button:
 

Access that variable from your dashboard/main form and assign it as the title of the form



No comments:

Post a Comment