gmorlosky wrote: > True, thanks, but you changed the premise of the question, so that does not > answer my question. > > Asking again, differently, What if the FOR statement was the following, how > would you stop it after 4 loops ? > > for( i = 7; CategoryGetName( categoryWatchlist, i )!= ""; i++ ) > >
for( i = 7; CategoryGetName( categoryWatchlist, i )!= ""; i++ )
{
if(i== 11)
break;
}
