Re: Open & Hide The File When A File Is Opening
How is del1.xls referencing ref.xls? If each delx,xls file is is trying to open the ref.xls file, then that is the problem. It should just reference the file, not open it since it is already open.
I have developed a shared system but have not attempted what you are doing. I don't see why ref.xls should be opening multiple times. If you are only reading ref.xls and not writing to it then the file should not be shared.
I hope you have read all the warnings on corrupt data when using shared files. If you need to write to the ref.xls file another (non-shared) way to do it would be to have def1.xls open the file, write, then close the file. If another def2.xls user tries to open the file at the same time it is an error and you can loop and wait 1-10 seconds until def1.xls has closed the file.