Hi,
Can you please let me know how I can run two windows form at the beginning of an application which one of them can be something like a "Quick Start" form or "Tip of Day" form and also the main application form which is running at the background and of course is visible but not accessible until the user cancel of finish the outer form?
Thanks for your time in advance
Loading
Javeed M ShaikhPosted Oct 22, 2011, 8:00 AM
did you try to load the Tip of the day form from the form load/ event of the main form.
Please do not forget to mark "Accepted Answer".
Javeed M ShaikhPosted Oct 22, 2011, 12:37 PM
can you try this in your program.cs
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
new Form2().Show(); //open Form2
}
}
Sam HobbsPosted Oct 22, 2011, 10:50 AM
VulpesPosted Oct 22, 2011, 9:15 AM
http://www.c-sharpcorner.com/Forums/Thread/144905/splashscreen-issue-main-form-goes-backward-when-splashs.aspx
Behrouz HosseiniPosted Oct 22, 2011, 8:38 AM
Thanks for your help but there are still some issue here!
As you said, What I did was:
This is working but when I run the app just the Tip of day appears on the screen and AFTER canceling it the Main form pops up.
Is there a way to have both on the screen at same time but the "Tip of Day" one at the top?
Thanks again for your time