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 - 23 May 2005 18:10 GMT
> 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
[quoted text clipped - 8 lines]
>
> What can be the problem?
Try \\server\share\file > \\myServer\Shared\allac.txt as Path
Acki