private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Luanching.... This may take a few second");
............
}
Here if I don't click OK in messagebox my from will not show up (It will wait until me click) how to fix this how to make form show up first or how to make doesn't wait for click OK
Another option is to place a backgroundworker on the form. Then in the events, doubleclik on 'DoWork' in the method that is then created in code, place the messagebox.show. This way the messagebox is shown in a separate thread and the loading of the form will continue