If i start a thread like this
addingResults = new Thread(threadAddingResults);
addingResults.Start();
In the Form1_Load function the thread doesn't start but if i start it with the same code on a lets say button click it works fine. Any reason why this is going on? Is this intended behaviour?