TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
JomarMark Tamargo
NA
27
9.7k
Splash Screen With MDI Form
Jan 17 2016 3:48 AM
I am just trying to yous splash screen with time interval at least 50 seconds or more than or less than.
any advise on the code or additional information?
Code below:
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
LoadingScreen Splash = new LoadingScreen();
Splash.ShowDialog();
MPDSMain MDI = new MPDSMain();
Application.Run(MDI);
}
}
Reply
Answers (
3
)
A C# recommendation
Backup