Here is where you do:
Move your Sub Main over to Form3, and set your project's
startup form to Form3. Then, change the Sub Main method to this:
static void Main()
{
Form3 frm3 = new Form3();
frm3.Show();
Application.Run();
}Then, in Form1's Closed event, add this: Application.Exit();It should work now. Click 'YES' and it will open your Form1, and
then closing that form will end the program.
BTW, Nerseus, WinZip will open CABs, and perhaps Windows will
too?
[edit]Oops, accidentally used VB tags; switched to C#[/edit]