I am looking for a way to load a MDE from a Visual Basic .Net application. The MDE is an Access 2000 version and all the clients on my network are using Access 97.
From this thread I found out that you can use a run time switch to overcome the version problem, however I am not sure how to set it for a MDE on a networked drive.
My .Net code looks like this:
As is, when a client tries to open the MDE their version of Access 97 tries to open it but ends with the wrong version error.
Is it possible to use the switch for a MDE on a network drive?
From this thread I found out that you can use a run time switch to overcome the version problem, however I am not sure how to set it for a MDE on a networked drive.
My .Net code looks like this:
Code:
Dim strMdeName As String = "\\Server\RTEA\database.mde"
Process.Start(strMdeName)
As is, when a client tries to open the MDE their version of Access 97 tries to open it but ends with the wrong version error.
Is it possible to use the switch for a MDE on a network drive?