I have a dBase5 file data.dbf which able to be displayed by excel app as following
FIELD1 FIELD2
blah blah
blah blah
Currently, I can run DTS successfully using field name as reference
DTSDestination("DEST_FIELD
_NAME") = DTSSource("SOURCE_FIELD_NA
ME")
I would like to reference the field using index 0, 1, 2, 3, ...
DTSDestination("DEST_FIELD
_NAME") = DTSSource(0) for example
Is it possible?
Start Free Trial