DoCmd.TransferText
acExportDelim, "", "qryQuickBooks", "c:\Data\qb.iif",
False, ""
I can't see anything wrong with this. Anyone have any
thoughts? Thanks.
See Douglas J. Steele's article:
http://members.rogers.com/douglas.j.steele/AccessReferenceErrors.html
--
HTH
Van T. Dinh
MVP (Access)
"Chuck" <c...@doubleplus.com> wrote in message
news:085501c394d4$a31b7890$a001...@phx.gbl...
Chuck
>.
>
Even though the final References is still the same, the process seems to
shake out errors in the References Collection.
--
HTH
Van T. Dinh
MVP (Access)
"Chuck" <c...@doubleplus.com> wrote in message
news:2da9f01c394d9$cd900e10$a601...@phx.gbl...
Chuck
>.
>
If the file "c:\Data\qb.iif" exists, try deleting it before the export.
Also,, I normally leave the spec argument empty and not an empty String.
Try:
DoCmd.TransferText acExportDelim, , "qryQuickBooks", _
"c:\Data\qb.iif", False, ""
--
HTH
Van T. Dinh
MVP (Access)
"Chuck" <c...@doubleplus.com> wrote in message
news:2dba601c394e5$71aa6580$a601...@phx.gbl...