The Background :
I have a folder (mydb) with an access db in it.
This folder also has a couple of files ( image files ( myImage.jpg), doc files, etc ) in it.
These files are called in VBA in a module in the db.
The Problem :
The path for a file in VBA on my computer is something like :
<img src='D:\my Data\Docs\mydb\myImage.jpg'" & "width='330' height='200'>"
Now if I want to test on a different computer, the path unfortunately most of the times is bound to be different.
Is it possible to avoid having to change the path in VBA, every time I work on a different desktop?
Thanks