aspdotnet
March 8th, 2003, 09:19 AM
static void Main()
{
frmMain fm= new frmMain();
Application.Idle += new System.EventHandler(fm.OnIdle);
Application.Run(mf);
}
public void OnIdle(object sender, EventArgs e)
{
ListInfo.Text = _alPostList.Count.ToString();
}
when i was programming i did like above..
i wonder if i did like above ...is there any overworking on the computer...?
sometimes i used to use this code.. but i might not know what this code means.
Is there really any overworking on computer if i use this code?
{
frmMain fm= new frmMain();
Application.Idle += new System.EventHandler(fm.OnIdle);
Application.Run(mf);
}
public void OnIdle(object sender, EventArgs e)
{
ListInfo.Text = _alPostList.Count.ToString();
}
when i was programming i did like above..
i wonder if i did like above ...is there any overworking on the computer...?
sometimes i used to use this code.. but i might not know what this code means.
Is there really any overworking on computer if i use this code?