Configuring remotely
-
Hi, I have a module that performs configuration for a product. It uses access (via ADO) as its underlying db. This module needs to start working remotely. The most direct solution would be to access the remote database via a shared drive. I am looking for alternatives (not excluding .net). Any ideas? Jeremy Pullicino C++ Developer Homepage
-
Hi, I have a module that performs configuration for a product. It uses access (via ADO) as its underlying db. This module needs to start working remotely. The most direct solution would be to access the remote database via a shared drive. I am looking for alternatives (not excluding .net). Any ideas? Jeremy Pullicino C++ Developer Homepage
You can connect to a remote machine if its name or ip address is known. In this case you have to modify the connection string you used in local connection. For examples see: http://www.codeproject.com/database/connectionstrings.asp Peter Molnar