I have created a vb .net exe to backup an mde, copy an updated version from the network, and start it.
I am trying to call the updater.exe from the mde using shell:
However, this appears not to be launching the updater.exe. what am I doing wrong?
I am trying to call the updater.exe from the mde using shell:
Code:
strLaunch = "C:\Program Files\CoData\Dbase\updater.exe"
shell strLaunch, vbNormalFocus
DoCmd.Quit
However, this appears not to be launching the updater.exe. what am I doing wrong?