wrong sintax in tranfer text (vba)

G

Guest

i
try to transfer text out of my database with the line of code:

DoCmd.TransferText acExportFixed, [FopTransferScanvaegt Export
Specification], FopTransferScanvaegt, fop.txt, no

but something is wrong with the sintax... can someone tell me what is it??

thanks in advance
 
T

tina

try

DoCmd.TransferText acExportFixed, _
"FopTransferScanvaegt Export Specification", _
"FopTransferScanvaegt", "fop.txt", False

see the TransferText Method topic in Access VBA Help for more information.

hth
 

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


Top