The Week or Two That Was
DAVID JONES V1.1
Some of the issues I have been looking at over the last week or so.
.
for (int i = 1; i < DayPivot.Items.Count;; i++) { DayPivot.Items.RemoveAt(i); }
The problem was that I was get an unauthorized access app crash.Then tried ( I was starting to get what the problem was here):
for (int i = 1; i < DayPivot.Items.Count;; i++) { DayPivot.Items.RemoveAt(1); }
The Solution:
int pivCount = DayPivot.Items.Count; for (int i = 1; i < pivCount; i++) { DayPivot.Items.RemoveAt(1); }
Next Edition: At the end of June