Hi!
what would be the most elegant way to get a single dimension from a 2-dim array.
dim a(10,10) as Long
dim b(10) as Long
I though it would be so simple like:
b()=a(1,()) ' is not working
any way with array.copy?
at the end I would like to populate a datagrid(view) as easy as possible.
Start Free Trial