create_share said:
Hi!
Is it possible for 2 or more users to work on a shared files
simultaneously
and save it.
Or is there any utility that can do this job?
Thanks!
The answer is "maybe", and "it depends". Context is rather important.
You'd need to provide more information as to what the application is you're
hoping to use.
However, the short answer is that most apps just cannot do this, and it's
typically database apps that can to any degree. There, record locking
rules usually apply so that two users have rights to open the same
*database* at once, but while they can both edit different *records* at the
same time, they can't both have edit rights to the *same* record at the same
time.
This is why you'll see in Word or Excel a message that a document can only
be opened in read-only mode if it's already open, either by yourself or by
another user on the network.
HTH
-pk