W
Wilmar
I want to export data (ca. 40 fields0 from a MSaccess db. with a
For-Next-loop
If I have the fields in an Array, how do I get this correct in the
ForNext-loop
Dim dbsA As Database, rst As recordset, tdfVeldnaam As TableDef
Set dbsA = Currentdb
Set rst = dbsA.OpenRecordset(StrSQL, dbOpenDynaset)
Open "XX.txt" For Output As #1
For I%=0To40
Print #1, ??????????
Next
Who can help?
Will Beumer
For-Next-loop
If I have the fields in an Array, how do I get this correct in the
ForNext-loop
Dim dbsA As Database, rst As recordset, tdfVeldnaam As TableDef
Set dbsA = Currentdb
Set rst = dbsA.OpenRecordset(StrSQL, dbOpenDynaset)
Open "XX.txt" For Output As #1
For I%=0To40
Print #1, ??????????
Next
Who can help?
Will Beumer