I am being a bit lazy here and after posting this question will try and seek the answer.
I have a form with 7 tabs (SSTab) and on each tab there is a MsFlexgrid consisting of 27 rows of 32 colums. This is a timesheet listing names and time from 08:00 to 10:00.
I want to be able to save this data and then reload when the program starts.
My initial thought is
Pseudocode:
for tab = 0 to 6
for row = 0 to 26
for column =1 to 31
save data
followed by the respective Nexts.
I am looking to see if there is an alternative to this like
for i = 0 to 6
Save MsFlexgrid array(i)
Next
Your comments and guidance is appreciated
Tony