Yes, it does that: No, that is not what your problem is.
dot/period has a special meaning in JET SQL, so it is
shown as #. If you really have a # in your file name you
are in trouble, so avoid that. If you really have a database
called tblLabels with a table called txt, write it like this
[tblLabels].[txt] :~) but I'm sure that is not what you meant.
You have to look again to see what the real problem is.
What directory are you exporting to? Is it there? Does
it have spaces in the directory path? The # is not the problem.
(david)
"Dick Babillis" <Dick
(E-Mail Removed)> wrote in message
news:98478370-AD71-4798-A64A-(E-Mail Removed)...
> Access 2003 SP2 running on Windows Server 2003 SP2
>
> Call to TableExport routine to export Access table as text file
> Relevant lines of code are:
>
> Public Sub TableExport(sTable As String)
> sTxt = "C:\PeopleA\Export\tblLabels.txt"
> DoCmd.TransferText acExportDelim, , sTable, sTxt, True
>
> On SOME machines at this location I get the error message:
>
> Run-time error '3011': The Microsoft Jet database engine could not find
> the
> object 'tblLabels#txt' ... Note . changed to #
>
> On other machines, call works without issue
>
> Seems like situation arose only within last 4-6 weeks
>
> Any insight would be appreciated. Thank you.
>
>