Missed to change foreach to for
for(var i=Application.OpenForms.Count-1;i>=0;i--)
{
var f= Application.OpenForms[i];
if (f.Name != "frmMain")
{
f.Close();
break;
}
}
Muthukrishnan Ramasamy
net4.rmkrishnan.net
Use only what you need, Reduce global warming
No comments:
Post a Comment