NasibKalsi
Programmer
Hi All:
Is there any function to find out if the dbf is open in Shared or Exclusive mode ?
My Best
Is there any function to find out if the dbf is open in Shared or Exclusive mode ?
My Best
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE myTable excl in 0 again
TRY
USE myTable shared again in 0
CATCH to loError
messagebox("Table is already opened in exclusive mode")
ENDTRY