Article ID: 129537
Article Last Modified on 8/25/1999
SET MULTILOCKS ON
=CURSORSETPROP("Buffering",n) && n may be any value from 2 - 5.
See the Visual FoxPro Help menu for more information on the CURSORSETPROP()
function.
SET MULTILOCKS OFF
CREATE TABLE MyTable (cFld1 C(10) CHECK !EMPTY(cFld1))
=CURSORSETPROP("buffering",1)
APPEND BLANK && The message appears!
SET MULTILOCKS ON
=CURSORSETPROP("buffering",2)
APPEND BLANK && The record is appended, no message!
When executing the APPEND BLANK command, Visual FoxPro attempts to store a
blank value in cFld1. This violates the NOT EMPTY rule specified in the
CREATE TABLE command, so a message indicating the rule violation occurs.
Additional query words: VFoxWin
Keywords: KB129537