W
WStoreyII
when ever i try to declare an object array in the declarations area
for instanc,
Dim MyRows() as DataRow
it will let me do this fine
but if i try to add a length to it for example
Dim MyRows(myds.tables("MyTable").rows.count ) as datarow
it will not let me do this it says that
"Constant expression expected"
but it will not let me make it a constant
what do i do?
WStoreyII
for instanc,
Dim MyRows() as DataRow
it will let me do this fine
but if i try to add a length to it for example
Dim MyRows(myds.tables("MyTable").rows.count ) as datarow
it will not let me do this it says that
"Constant expression expected"
but it will not let me make it a constant
what do i do?
WStoreyII