Hi,
Usually, I use the USED() command to detect any opened table. Normally, i works fine until this new project. When a tbale was open exclusive
WHAT I DID :
1) issued "USE 'c:\VisDev\Figures\Data\' + 'us_user'" from another Foxpro command window
2) In another foxpro, i run the codes below in a form.
MY CODES:
DBPATH='c:\VisDev\Figures\Data'
tblUs_user = DBPATH + '\' + 'us_user'
IF !USED('us_user') <----- .F.
USE &tblUs_user IN 0 <-------- Resulting File Access Denied until I closed the open table issued in step 1 above.
ENDIF
Please help.
Usually, I use the USED() command to detect any opened table. Normally, i works fine until this new project. When a tbale was open exclusive
WHAT I DID :
1) issued "USE 'c:\VisDev\Figures\Data\' + 'us_user'" from another Foxpro command window
2) In another foxpro, i run the codes below in a form.
MY CODES:
DBPATH='c:\VisDev\Figures\Data'
tblUs_user = DBPATH + '\' + 'us_user'
IF !USED('us_user') <----- .F.
USE &tblUs_user IN 0 <-------- Resulting File Access Denied until I closed the open table issued in step 1 above.
ENDIF
Please help.