I do this :
I have a global parameter table where I have a field : version. This field is the last released version.
I have a users database, where every user has his own field version :
I check the users version with the global version and when there is a difference, I copy the file from the server to his local machine :
[code=fw:uxr0rh16][/code:uxr0rh16]
It will copy the exe file as a Update.exe file to the local machine, since I was not able to copy the file as the original exe file, since the original file is allready loaded into the computer.
The users start the program with a batch file : start.bat with the folowing code.
If there is a update.exe the new version will be copy over the old version.
copy update.exe kabouters.exe
erase update.exe
start kabouters.exe
exit 0
I'm sure there are better ways, but this works. Maybe a better solution will come in this treat and can I addapt
↧