LockScreen
This property lets you make a bunch of changes to a form at once without the user seeing each change as it happens. Not only that, it speeds up the process. However, be careful because it can make it look like the system is hung.
Usage |
frmForm.LockScreen = lBatchChanges lBatchChanges = frmForm.LockScreen |
Example |
ThisForm.LockScreen = .T. ThisForm.BackColor = RGB(0,0,255) ThisForm.Text1.Left = ThisForm.Text1.Left+10 ThisForm.SetAll("FontName", "Arial") ThisForm.LockScreen = .F. |
See Also |