|
Home > Archive > MS Access Multiuser > May 2005 > text file reader error
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
text file reader error
|
|
|
| Hi,
I have one front-end app and one back-end app. In the shared folder on the
server (where I store my back-end) I also have a text file named allac.txt.
In my front-end I have a macro that reads this textfile, the code looks like
this:
DoCmd.TransferText A_IMPORTFIXED, "allcont", "allcont1", strPath
The strPath is the path to the string allac.txt. When I copy my front-end to
the client computer the code doesnt work. I have changed the strPath to be:
"http://myServer/Shared/allac.txt".
What can be the problem?
Thanks,
Julia
| |
| Joerg Ackermann 2005-05-23, 1:24 pm |
| Julia wrote:
> I have one front-end app and one back-end app. In the shared folder
> on the server (where I store my back-end) I also have a text file
> named allac.txt. In my front-end I have a macro that reads this
> textfile, the code looks like this:
>
> DoCmd.TransferText A_IMPORTFIXED, "allcont", "allcont1", strPath
>
> The strPath is the path to the string allac.txt. When I copy my
> front-end to the client computer the code doesnt work. I have changed
> the strPath to be: "http://myServer/Shared/allac.txt".
>
> What can be the problem?
Try \\server\share\file > \\myServer\Shared\al
lac.txt as Path
Acki
|
|
|
|
|