Is it possible to display the contents of an array when debugging?
Is it possible to display the contents of an array when debugging?
Yes, I'm attaching a sample of a small program. Within the program I fill an array col() with names of skills. I have a screen capture showing the value of i (the index) and the contents of col(i) in the locals window. In the program itself, you could use a loop to display each of the entries in col() also.
Good luck
Thanks orange!