Article ID: 129413
Article Last Modified on 2/12/2000
The LOCKSCREEN property determines whether a Form batches all changes to
property settings on the Form and its contained objects.
Syntax:
Form.LockScreen[ = lExpr]
Settings:
lExpr
The settings for the LockScreen property are:
Setting Description
--------------------------------------------------------------------
True (.T.) The Form and its contained objects reflect changes in
property settings in batch mode, or all at once, rather
than as soon as the changes are made.
False (.F.) (Default) The Form and its contained objects reflect
changes in property settings as soon as the changes are
made.
Remarks:
Form1.BackColor=RGB(150,0,200)If the LOCKSCREEN property is set to true, the previous command will not be reflected until such time as you issue a command like this:
FORM1.REFRESH-or-
FORM1.PAINTThe key advantage to you as a programmer is that you can make a series of changes to an object such as a screen without having each item flicker and update to reflect the new changes you've made. Instead, you can turn this property off, make your changes, and then force a refresh of the screen for a much crisper and more professional appearance.
Additional query words: VFoxWin Screen Update Refresh 3.00
Keywords: KB129413