To turn my FoxPro 2.0 (I have the LAN version for development of application) application in a multi-user application I just put the following commands in the main program:
SET EXCLUSIVE OFF
SET REPROCESS TO AUTOMATIC
Of course, if a routine opens a file to pack it, it is opened with the command EXCLUSIVE set to ON in the program.
The .EXE file is set to Read Only in the server machine.
The DOS application runs under Windows 95/98 without problems in a multi-user environment.
I understood that I don't have to worry about putting RLOCKs in the programs ( do not use FLOCK or RLOCK), I just used the commands above. Am I correct or am I missing something important?
Thank you very much
Michel
SET EXCLUSIVE OFF
SET REPROCESS TO AUTOMATIC
Of course, if a routine opens a file to pack it, it is opened with the command EXCLUSIVE set to ON in the program.
The .EXE file is set to Read Only in the server machine.
The DOS application runs under Windows 95/98 without problems in a multi-user environment.
I understood that I don't have to worry about putting RLOCKs in the programs ( do not use FLOCK or RLOCK), I just used the commands above. Am I correct or am I missing something important?
Thank you very much
Michel