The information in this article applies to:
- Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b
SYMPTOMS
One of the following errors occurs occur when attempting to run the SET
INDEX TO command programmatically from a running form:
- File must be opened exclusively.
-or-
- File is in use by another.
CAUSE
A table opened by the Data Environment of a form is opened shared by
default. Therefore, when the form is running and you issue an INDEX ON
command, an error occurs.
RESOLUTION
Set the Exclusive Property of the cursor to .T. at design time.
NOTE: Attempting to set this property at run-time causes the following
error message:
Property setting will not take effect until data environment reloaded
STATUS
This behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
- Create a form.
- Right-click the form, and then click Data Environment.
- Right-click the Data Environment window, and then click Add.
- Locate the Customer table in the Vfp\Samples\Data directory, and then
select and add it to the Data Environment of the form.
- Scroll down in the list box displaying the Customer table and note which
indexes which currently exist. This is so that an index that already exists
isn't recreated when the INDEX ON command is run in Step 7 later.
- Add a command button to the form.
- Add the following code to the Click method of the command button
SELECT CUSTOMER
INDEX ON <field_name> TAG <field_name>
where field_name is the name of a field in the Customer table that does
not already have an index tag, as noted earlier in Step 5.
- Save and run the form.
- Click the command button.
Steps to Correct Form Created in Previous Example
- Close, and then edit the form.
- Right-click the form, and then click Data Environment.
- Right-click the Customer table list box, and then click Properties.
- In the Properties window, click the Data tab, and then examine the
Exclusive property. Note that the default value is .F.
- Change the Exclusive value to .T., and then save and rerun the form.