I ran across this in a recent project I created. I had a form that opened tables within the INIT for update as SHARED.
I added a new lookup table and used NOUPDATE to prevent inadvertant updates. But I left off the SHARED qualifier as I thought that it was assumed.
Long story short... NOUPDATE does not affect the file locking only the write back ability. Always specify the SHARED or EXCL qualifiers and save yourself unwanted debugging.
JB
Jonthan A Black
I added a new lookup table and used NOUPDATE to prevent inadvertant updates. But I left off the SHARED qualifier as I thought that it was assumed.
Long story short... NOUPDATE does not affect the file locking only the write back ability. Always specify the SHARED or EXCL qualifiers and save yourself unwanted debugging.
JB
Jonthan A Black