I created a VB 6 app that multiple user run on their workstation. The installation
package is on the production server in a place called \\WhatEverServer\Software\MySoftware.
In that spot, there is the executable (which I recreate "recompile" from time to time) and the
installation package.

I need to be able to update the PC's because of minor changes et whatever. I'll probably
create an executable that will check if the application is currently running and if not, copy the
new executable file from the server to the PC.
  • How to find out if the application is currently running?
  • What kind of code do I need to copy the updated
    executable from the \\WhatEverServer spot to the PC?

TIA for any advice and/or sample code