The following is what my DoCmd.TransferText looks like
oCmd.TransferText TransferType:=acExportDelim, _
SpecificationName:="Schema.ini", _
TableName:="BASIC_DATA_Query", _
FileName:="BASIC_DATA_Query_Result.txt", _
HasFieldNames:=False
When I give the "schema.ini" as my specification name, I get an error
"Run-time error '3625': The text file specification 'Schema.ini' does not exist. You cannot import, export, or link using the specification."
Even after referring to this article: http://support.microsoft.com/kb/241477
I have not been able to resolve the problem. My 'Schema.ini' is in the same folder as the DB.
BASIC_DATA_Query - is a query which has all my results and I need that to be exported to the file BASIC_DATA_Query_Result.txt with header and fields separated by tabs.
What is the possible solution?