What i know about Application.Idle is application finishes processing and is about to enter the idle state.Here does we do the operation once it becomes idle or just before the moment it becomes idle.Somewhere i read that "If you have tasks that you must perform before the thread becomes idle, attach them to this event."So is it meant we need to perform before thread becomes idle or after it becomes idle.
I have a bit of code in my project shown below,Does that means we are performing Updation of database when it becomes idle.
private void Application_Idle(object sender, EventArgs e)
{
// Update the explorer's menuitems
team.UpdateMenu();
// Update display toolbars.
team.UpdateToolBar();
// Update SaveAll
SaveAll.Enabled = teaj.IsModified;
Up.Enabled = team.CanNavigateUp;