I just have this array filled from a simple select about Fields:
X = RS1.RecordCount
Erase strDBRows()
strDBRows = RS1.GetRows(X)
RS1.Close
Set RS1 = Nothing
i need to save the array into a txt file in c:\mydir\mytxt.tx
but assign the same fixed lenght of 20 character for each filed in array.
example:
aaaaa bbbbb ccccc
aaaaa b1b1b1 cc444
ecc...
X = RS1.RecordCount
Erase strDBRows()
strDBRows = RS1.GetRows(X)
RS1.Close
Set RS1 = Nothing
i need to save the array into a txt file in c:\mydir\mytxt.tx
but assign the same fixed lenght of 20 character for each filed in array.
example:
aaaaa bbbbb ccccc
aaaaa b1b1b1 cc444
ecc...