Click here to Skip to main content
15,917,628 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I'm a beginer for C# and I'm developing small project in C#. I've some basic problems.

I've one splash screen, from this form(splash screen) I show another form for User login. After user enters user name and password on click of 'Login' button I have to close Splash screen as well as login screen and show main menu window which is a mdi form. How can I resolve this problem?

I'm searching the functionality like Load and Unload form in VB6.0


Thanks,
Madan
Posted

Hi Madan, Create the object of splash screen window and login window in any button_click like

splashscreen ssw=new splashscreen();
ssw.close();
loginwindow lw=new loginwindow();
lw.close();


Sarath......
 
Share this answer
 
Take a look at this tip[^].
 
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