I am using Crystal XI and I want to know how to define an array with specified number of elements. I only need to have five elements at any one time in the array so that I can do comparisons on those elements. Can someone help me please?
[tt]Stringvar Array myarray;
redim myarray[5];// resizes myarray to an array of 2 elements
myarray[1]:= "Hello ";
myarray[2]:="World! ";
myarray[1]&myarray[2];[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.