export to text file problems

K

Keith G Hicks

Using A2003 with A2k format & ADP (not mdb).

I'm converting an mdb to adp. In the mdb we had been using the following to
export text

DoCmd.TransferText acExportDelim, "ZqryTempForAttyNoticeList Export
Specification", "ZqryTempForAttyNoticeList", sDefaultFolder & sFileName,
False

This has always run just fine. Now that I'm in the ADP world and there is no
such thing as a stored export spec, I'm stuck. I figured I'd use a
schema.ini but I'm not having any success with that. Here's what I've got so
far.

I'm using a stored procedure to post data to a permanent temp table. Then in
the adp I'm doing this:

DoCmd.TransferText acExportDelim, , "tblTempNoticeExportToTextFile",
strSaveToPathAndFileName, False

This runs ok but of cousre this just uses the default export settings
(CSVDelimited with double quote as text delimiter) when there's no
schema.ini

I need the file to be a tab delimited and no quotes around text at all. I
thought I'd create my own schema.ini but every time I do the above code just
overwrites it or adds a new section to it. It seems that it doesn't make use
of it at all. And the help on this topic is really crappy. And everyone
online just says to use a schema.ini with no further explanation.

I didn't post this to the adp newsgroup because the fact that I'm using an
apd shouldn't really matter here. I know that a schema.ini can be used in an
mdb as well and that's the main problem.

Can anyone point me to some better information or fill me on on what I'm
doign wrong here?

Thanks,

Keith
 
K

Keith G Hicks

For anyone that might be interested, the line that's needed in the
schema.ini for this is:

TextDelimiter = "none"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

transfertext & schema.ini 1
Schema.ini ignored - Export Text 5
Export to text 1
Export to text 2
Schema.ini ignored - Export Text 1
Export File 15
Exporting a query results 1
schema.ini ignored doing TransferText 0

Top