sjfleming 0 Newbie Poster

Hi,

I had a number of seperate VS solutions and now i've put them into one solution.

Some of these previous solutions have a close button that calls Application.Exit()
Some of these previous solutions have a close button that calls Close()

My new solution has a windows form with some buttons that loads the other application's forms.

How can I set these up (new applications) as new processes/threads so that when I click on the close button that calls Appliction.Exit(), it doesn't shut down the whole lot.

The code behind the main windows's button is something like this.

private void CSVFileSplitterButton_Click(object sender, EventArgs e) 
        { 
            new CSVFileSplitter.CSVFileSplitterForm().Show(); 
        }