modi123_1, on 31 August 2012 - 01:46 PM, said:
33 Replies - 2138 Views - Last Post: 30 January 2013 - 03:27 PM
#17
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:10 PM
#18
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:14 PM
#19
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:18 PM
#21
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:21 PM
#22
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:21 PM
#23
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:23 PM
Mine most certainly does not. I am looking at VS 2010 pro.
#24
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:24 PM
#25
Re: How do I make a splash screen?
Posted 31 August 2012 - 02:38 PM

(Sorry only got a screen shot for VS2012. I couldn't try VS2010 because I deliberately chose not to install VB.NET in VS2010. VS2012 Ultimate didn't give me a choice. I got VB.NET with C# even if I wanted just C#.)
#26
Re: How do I make a splash screen?
Posted 29 January 2013 - 04:51 PM
static void Main()
{
IntroForm introForm = new IntroForm();
if (introForm.ShowDialog() != DialogResult.OK)
{
Application.Exit();
return;
}
Application.Run(new MainForm());
}
#27
Re: How do I make a splash screen?
Posted 29 January 2013 - 04:58 PM
Hope this helps. No questions are the wrong question by the way
#28
Re: How do I make a splash screen?
Posted 30 January 2013 - 06:52 AM
Also with post #26, why call Application.Exit() when you can simply return out of main() ?
As for there being no wrong questions: that is true. There's just the wrong time or audience to ask them. (ex. "Like when did your herpes symptoms subside?")
This post has been edited by Skydiver: 30 January 2013 - 06:55 AM
#29
Re: How do I make a splash screen?
Posted 30 January 2013 - 08:37 AM
Quote
Office 2010 finally added a close button on their splash screen that will start up. With event-driven programming, it's easier to make a splash screen that can respond to UI commands while resources load in the background on another thread.
#30
Re: How do I make a splash screen?
Posted 30 January 2013 - 09:32 AM
|
|

New Topic/Question
Reply




MultiQuote





|