thanks fang .... it is very useful I will do it in your way.....
Fang I have come up with that code, is that correct? and put it in the thread systemQuote:
#region Kill Sleeping Connection
private void Loop()
{
int count = 0;
while (1 > 0)
{
Sleep(2000);
count++;
if (count > 29)
{
Conquer_Online_Server.Database.KillConnections.Kil l();
count = 0;
}
Sleep(Milliseconds);
}
}
#endregion