Hi Visual Studio 2010 problem,
I want to run a counter that counts days.
Then i want the counter to terminate the loop at 7days.
Then I want to run a continuous count of number per day.
Thus for example: Day1 = 20
Day2 = 34
Day3 = 6
Therefore,
Presently: counter = 3days
running total = 60
I think I have the daily counter code correct but check me anyway.
Const MAXVALUE = 7
counter = MAXVALUE + 1 (per iteration)
So my main problem is how do I add the Day1 number to the Day2 number in a
way that keeps a running total.
Thanks in advance
Light


