I have
testArray: Array[0..10] of String;
testButton: TButton;
saveButton: TButton;
the first time i click the button i want to see all the elements of the array.
When i click the save button i want to save the amended array.
The first time i click the testButton i get an error because nothing is in the array yet (on debug the array show inaccessible value). how do i check the array to see if anythings in it????
I dont have a problem with showing or saving the array.
hope you understand what i trying to say
testArray: Array[0..10] of String;
testButton: TButton;
saveButton: TButton;
the first time i click the button i want to see all the elements of the array.
When i click the save button i want to save the amended array.
The first time i click the testButton i get an error because nothing is in the array yet (on debug the array show inaccessible value). how do i check the array to see if anythings in it????
I dont have a problem with showing or saving the array.
hope you understand what i trying to say