I've written a client-server c# app and let it run all night , and when i wanted to see if it was still working i've found an error on the server . unfortunately the app is to big to paste in some code, but i get an error at
Application.Run(form1)
in the program.cs that says 
The first two messageboxes can be ignored (from left to right ) because they are supposed to show , but the other
delegate buton couldn't be executed
comes from this code ánd mai have a part in this error(this code is in form1.cs) :
public void setButonState(inout_buton b, bool t, int q,int contor)
{
try
{
if (b.InvokeRequired)
{
Callback d = new Callback(setButonState);
this.Invoke(d, new object[] { b, t, q, contor });
}
else
{
b.Enabled = t;
if (q == 0) b.setBackgroundGrey();
if (q == 1) b.setBackgroundGreen();
if (q == 2) b.setBackgroundRed();
if (q == 3) b.setBackgroundOrange();
b.setSecondaryLabel(contor);
}
}
catch { new ShowMessageBox("FORM1 : delegate buton couldn't be executed"); }
}
My question is : in what conditions does these errors show ?
