Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i ma doing a project in c# have 3 form
+Registration key form
+Login form
+Main form
first before, user must input serial key into registration key form, if correct key, login form will show().
Since then, Registration will hidden and Login form is Show()
so, How to hidden Registration Key form when serial key is exit and correct?
Posted
Comments
[no name] 6-Dec-12 3:42am    
Not clear..
binhminhtrencat 6-Dec-12 9:33am    
Not yet! I did like this

1 solution

Call the Hide method:

C#
LoginForm lf = new LoginForm();
Hide();
lf.ShowDialog();
Close();
That will hide your registration form, display your login form, then close teh registration form when the login form closes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900