Links are not active on this page.
 SET DELIMITERS Command

Included for backward compatibility. Use the Format Property instead.

This command is undocumented in the original VFP9 help file,
but the following documentation was found in the FoxPro for Windows 2.6 help, and may still be valid:

Specifies whether or not @ ... GET input fields are delimited.

SET DELIMITERS ON | OFF
SET DELIMITERS TO expC | TO DEFAULT

Expand imageRemarks


SET DELIMITERS is included for backward compatibility.

ON
 Issuing SET DELIMITERS ON displays delimiters in @ ... GET fields. The default delimiting characters are colons (:). A colon is placed on the left and right side of the field to indicate where to enter data.

OFF
 If SET DELIMITERS is OFF, no delimiters are displayed in fields created with @ ... GET. This is the default setting.

TO expC
 Specify one or two delimiting characters with expC. Fields are delimited on both sides by the same character if expC includes one character. If expC includes two characters, the first character is the left delimiter and the second character is the right delimiter.

TO DEFAULT
 Use SET DELIMITERS TO DEFAULT to reset the delimiters to the default colons.

Expand imageSee Also