All I want to do is for some block of code to run every 10 minutes or about. Can anyone tell me is there some standard or common way of implenting a block of code that just buys some time or is it a simple loop like the following:
int i;
for (i = 0; i < 100000; i++)
{
.... do nothing code
}