I'm getting this error when I try to export a Access file:
"Selected collating sequence not supported by the operating system."
Here is the code I'm using to export:
Dim x As New Spire.DataExport.Access.AccessExport
x.DataSource = Spire.DataExport.Common.ExportSource.DataTable
x.DataTable = dt
x.TableName = "report"
x.SaveToHttpResponse("Download.mdb", objResponse)
Does anyone have any ideas why this is happening? I'm currently developing this on a Windows XP 64 bit machine using ASP.NET.