Visual C# Developer Center >
Visual C# Forums
>
Visual C# Language
>
creating a start page for a application as in MS offica or visual studio
creating a start page for a application as in MS offica or visual studio
- how can I create a start page for my application like a MS office or the start page which appear every time when visual studio is started
Answers
- Create a borderless form (FormBorderStyle = None) and set its BackgroundImage.
You can load that form at startup and close it after a Timer triggers- Marked As Answer byHarry ZhuMSFT, ModeratorWednesday, November 11, 2009 4:34 AM
- Proposed As Answer byHarry ZhuMSFT, ModeratorTuesday, November 10, 2009 8:06 AM
- Hi,
You might need first make the main form invisible, and show the start form. After several secs , set the start form and show the main form:
http://msdn.microsoft.com/en-us/library/aa984417(VS.71).aspx
Harry
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.- Marked As Answer byHarry ZhuMSFT, ModeratorWednesday, November 11, 2009 4:34 AM
- Proposed As Answer byHarry ZhuMSFT, ModeratorTuesday, November 10, 2009 8:06 AM
All Replies
- I want a welcome page for my desktop application please help
- Hi,
You might want to use TabControl and set the first page of the control as the welcom page, for more information please see:
http://msdn.microsoft.com/en-us/library/system.windows.forms.tabcontrol.aspx
Harry
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us. - no sir what I want is that a small image type thing pop up when somebody starts my application and then it disappear itself after some seconds and then the main form starts
- Create a borderless form (FormBorderStyle = None) and set its BackgroundImage.
You can load that form at startup and close it after a Timer triggers- Marked As Answer byHarry ZhuMSFT, ModeratorWednesday, November 11, 2009 4:34 AM
- Proposed As Answer byHarry ZhuMSFT, ModeratorTuesday, November 10, 2009 8:06 AM
- Hi,
You might need first make the main form invisible, and show the start form. After several secs , set the start form and show the main form:
http://msdn.microsoft.com/en-us/library/aa984417(VS.71).aspx
Harry
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.- Marked As Answer byHarry ZhuMSFT, ModeratorWednesday, November 11, 2009 4:34 AM
- Proposed As Answer byHarry ZhuMSFT, ModeratorTuesday, November 10, 2009 8:06 AM


