G
Gert-Jan
Hi,
I use the following export code to export from access 2003 to a CSV file,
but after this I need to import the file to a website and the website only
accepts the seperator ; but what I try I always can the commaseparator (,)
Can someone please help me how to get an ; as separator.
The code:
Public Function Export()
On Error GoTo Err_export1
Dim AString As String
AString = "Import"
DoCmd.TransferText acExportDelim, "", "csv", "c:\import\export\" & AString &
Format(Date, "_DDMM") & ".csv"
Exit_export1:
Exit Function
Err_export1:
MsgBox Err.Description
Resume Exit_export1
End Function
Please help me !!
I use the following export code to export from access 2003 to a CSV file,
but after this I need to import the file to a website and the website only
accepts the seperator ; but what I try I always can the commaseparator (,)
Can someone please help me how to get an ; as separator.
The code:
Public Function Export()
On Error GoTo Err_export1
Dim AString As String
AString = "Import"
DoCmd.TransferText acExportDelim, "", "csv", "c:\import\export\" & AString &
Format(Date, "_DDMM") & ".csv"
Exit_export1:
Exit Function
Err_export1:
MsgBox Err.Description
Resume Exit_export1
End Function
Please help me !!