A UNC address is similar to an IP address, but easier, and safer to use. Like for example on the WWW, when you enter
www.yahoo.com, a DNS (Domain Name Server) translates
www.yahoo.com into 216.109.127.30, and connects you to Yahoo.com. A UNC address is a Universal Naming Convention for a local computer within your companies network. So in your application you could use the following:
\\<computer name where file resides>\<drive letter>\<folder name>\<file name> for example:
\\mycomputer\D$\myfolder\mybd.mdb could be a valid UNC address.
This way, if the computer uses a DHCP server to obtain an IP address, you will never have to worry about losing the connection because, although the IP address may change, it is almost impossible to change the UNC address. Use the UNC address whenever possible.
Skipmeok