Hi Guys,
im trying to create a counter for a project ... but have some problems...
Nothing speacial - but its only count around 200 ... try and see what happens...
What could i do that it counts correct from 0 - to MaxCount with 1 step ??
Thanks for your help !
Regards
Tim
im trying to create a counter for a project ... but have some problems...
Nothing speacial - but its only count around 200 ... try and see what happens...
What could i do that it counts correct from 0 - to MaxCount with 1 step ??
Inserted Code
int start()
{
//----
int MaxCount = 10000;
int i = 0;
if(StrToTime("2010.06.01 00:25") == TimeCurrent()) {
while( i < MaxCount )
{
Print(i);
Comment(i);
i++;
}
}
return(0);
} Thanks for your help !
Regards
Tim