I'm using a form in my application that needs to be loaded quickly, but when I close that form it takes forever to load, is there a way I can close the form but it does not reload every time I open it?
That way I close the form:
private void pbFechar_Click(object sender, EventArgs e)
{
this.Close();
}