J
Jim Pockmire
I am using .addnew to add 100 columns per record to a table from an array.
Is there a way to loop through the code so as not to have to write 100
individual assign statements as below?
tdf.addnew
Col1=rs!Array(0)
Col2=rs!Array(1)
...
...
Col(100)=rs!Array(99)
tdf.update
Is there a way to loop through the code so as not to have to write 100
individual assign statements as below?
tdf.addnew
Col1=rs!Array(0)
Col2=rs!Array(1)
...
...
Col(100)=rs!Array(99)
tdf.update