'so this is now the backup version that I use
'modified and working
'http://stackoverflow.com/questions/6154812/how-do-i-keep-the-necessary-decimal-places-when-using-the-docmd-transfertext-com
Public Sub ExportToCSV(TableName As String, _
strFile As String, _
Optional strQualifier As String = vbNullString, _
Optional strDelimiter As String = ",", _
Optional FieldNames As Boolean = False, _
Optional tablecount As Long = 0)
Dim Items(2) As Long
'References: Microsoft Access 11.0 Object Library, Microsoft DAO 3.6 Object Library
'Set references by Clicking Tools and Then References in the Code View window
'
' Exports a table to a text file.
' Accepts
' Tablename: Name of the Target Table or Query
' strFile: Path and Filename to Export the table to
' strQualifier: specifies text qualifier (typically a double-quote)
' strDelimiter: String Value defaults to comma: ,
' FieldNames: True or False
'
'USAGE: ExportToCSV TableName, strFile, Chr$(34), ",", True
On Error GoTo errhandler
Dim intOpenFile As Integer
Dim strSQL As String, strCSV As String
Dim fld As DAO.Field
'Close any open files, not that we expect any
Reset
'Grab Next Free File Number
intOpenFile = FreeFile
'Open our file for work
Open strFile For Output Access Write As #intOpenFile
'Write the contents of the table to the file
'Open the source
Items(1) = DCount("*", TableName)
Items(2) = 0
strSQL = "SELECT * FROM " & TableName
With CurrentDb.OpenRecordset(strSQL, dbOpenSnapshot)
'Check if we need Field Names
If FieldNames Then
For Each fld In .Fields
strCSV = strCSV & strDelimiter & strQualifier & fld.Name & strQualifier
Next fld
' remove leading delimiter
strCSV = Mid$(strCSV, Len(strDelimiter) + 1)
'Write to File
Print #intOpenFile, strCSV
End If
'Write records to the CSV
Do Until .EOF
strCSV = ""
For Each fld In .Fields
If fld.Type = dbText Or fld.Type = dbMemo Then
If Len(Nz(fld.Value, "")) > 255 Then
strCSV = strCSV & strDelimiter & strQualifier & Left(fld.Value, 255) & strQualifier
Else
strCSV = strCSV & strDelimiter & strQualifier & fld.Value & strQualifier
End If
Else
strCSV = strCSV & strDelimiter & fld.Value
End If
Next fld
' remove leading delimiter
strCSV = Mid$(strCSV, Len(strDelimiter) + 1)
'Eliminate Back to back strQualifiers
If Len(strQualifier) > 0 Then
strCSV = replace(strCSV, strQualifier & strQualifier, "")
End If
'Write to File
Print #intOpenFile, strCSV
Items(2) = Items(2) + 1
DoEvents
.MoveNext
Loop
.Close
End With
ExitHere:
'Close the file
Close #intOpenFile
Exit Sub
errhandler:
With Err
MsgBox "Error " & .Number & vbCrLf & .Description, _
vbOKOnly Or vbCritical, "ExportToCSV"
End With
Resume ExitHere
End Sub