An Application starter (with auto copy from server into local station).
faq184-4492
1. Make a gsStart.EXE distribution set. By including the VFP runtime files with the gsStart.EXE and making a installation set, makes the users installations very simple.
2. Since the code is very limited, you wont be revising this often as you may do with your application. That makes the working very easy.
3. This helps reduce the network trafic, by having the starter in each users local computer. The gsStarter will copy your pointed application to the local computer and start it every time auto synchronizing with server. SO any time you upgrade your application, simply copy it in the server and forget. The user will get distributed thru the gsStarter.EXE.
4. Make sure your application, sets the path to your server data location.. by adding suitable path statement..
Example..
gcDataPath = ADDBS(gcAppPath+"Data\"
gcOldPath = SET("PATH"
SET PATH TO gcAppPath+";"+gcDataPath+";"+gcOldPath
(May be I will include these text in the FAQ now).
Cheers.
____________________________________________
ramani - (Subramanian.G)
When you ask VFP questions, please add VFP version.
faq184-4492
1. Make a gsStart.EXE distribution set. By including the VFP runtime files with the gsStart.EXE and making a installation set, makes the users installations very simple.
2. Since the code is very limited, you wont be revising this often as you may do with your application. That makes the working very easy.
3. This helps reduce the network trafic, by having the starter in each users local computer. The gsStarter will copy your pointed application to the local computer and start it every time auto synchronizing with server. SO any time you upgrade your application, simply copy it in the server and forget. The user will get distributed thru the gsStarter.EXE.
4. Make sure your application, sets the path to your server data location.. by adding suitable path statement..
Example..
gcDataPath = ADDBS(gcAppPath+"Data\"
gcOldPath = SET("PATH"
SET PATH TO gcAppPath+";"+gcDataPath+";"+gcOldPath
(May be I will include these text in the FAQ now).
Cheers.
____________________________________________
ramani - (Subramanian.G)
When you ask VFP questions, please add VFP version.