| 1. |
Create a login screen for Creative Minds
Blogspot. Create a new blank solution and call it
"CMB". Create two new projects and name them Login and
Welcome. Set the Login page as the default startup page. |
| . |
|
| 2. |
Add two textboxes for username and
password. |
| 3. |
Add two labels to identify the username and
password textboxes. |
| 4 |
Add three buttons and name them Login,
Clear and Exit. |
| 5 |
Set the PasswordChar property of the
Password textbox to an asterisk (*). |
| . |
|
| 6 |
When the Login button is clicked: |
| 6.1 |
Validate that both the username and
password was entered. If either are missing, display a messagebox
with an appropriate message. Return the focus to the empty textbox
so that the user may enter the appropriate data. |
| . |
If both the username and password was
entered, load the Welcome page. |
| . |
|
| 7. |
The welcome page should display
"Welcome username" "We hope you will enjoy
our blogspot. The Creative Minds Team." |
| 8. |
Add a button to the Welcome page and name
it Continue. When the user clicks this button it should take him
to his account, but for the purpose of this exercise you should code it
to exit the program. |