Hello all:
I would appreciate some advice on array subscripts.
I am having problems passing 2-D arrays to functions I have written. The reason is that some of the arrays are dynamic arrays subscripted as array[j], whereas some of them were created in a class I wrote and these are subscripted as array(i,j).
I know that I could change my class to use array[j] subscripting, but it would be very helpful to be able to pass arrays that have BOTH types of subscripting to my functions.
Can anyone suggest how to do this? I hope I have made sense--I'm pretty new to this.