Melhor maneira de exibir um formulário de progresso enquanto um método está executando o código?

Eu tenho um método de carga WinForm que leva muito tempo para coletar alguns dados para exibir para o usuário.

Eu exibo um formulário com uma fonte grande com a palavra "Carregando" enquanto este método está sendo executado.

No entanto, às vezes, esse erro aparece e o formulário de progresso "Carregando" não fecha e, finalmente, todo o meu aplicativo sairá:

Erro ao criar o identificador de janela. em System.Windows.Forms.NativeWindow.CreateHandle (CreateParams cp)

Existe uma maneira melhor de exibir meu formulário de progresso / carregamento enquanto estou executando o código no método load?

Este é o meu código:

//I launch a thread here so that way the Progress_form will display to the user
//while the Load method is still executing code.  I can not use .ShowDialog here
//or it will block.

//Progress_form displays the "Loading" form    
Thread t = new Thread(new ThreadStart(Progress_form));  

t.SetApartmentState(System.Threading.ApartmentState.STA);
t.IsBackground = true;
t.Start();

//This is where all the code is that gets the data from the database.  This could
//take upwards of 20+ seconds.

//Now I want to close the form because I am at the end of the Load Method                         

try
{
   //abort the Progress_form thread (close the form)
   t.Abort();
   //t.Interrupt();
}
catch (Exception)
{
}

questionAnswers(3)

yourAnswerToTheQuestion