I currently have the following array declared in my Windows Form
class-id TPS000.TPS0010DForm is partial
inherits type System.Windows.Forms.Form.
working-storage section.
01 multi-line string property occurs 12.
The index for this array starts as (0) as follows:
(0) = 1st Element
(1) = 2nd Element
(2) = 3rd Element
Etc………
Is there any way of forcing the index to start at 1 so that the elements are stored as follows:
(1) = 1st Element
(2) = 2nd Element
(3)= 3rd Element
Etc…
Initializing the first index to 1 will make my program easier to code and to debug later on.