FIX: Browse Does Not Repaint Correctly (124205)
The information in this article applies to:
- Microsoft Visual FoxPro for Windows 3.0
- Microsoft FoxPro for Windows 2.6a
This article was previously published under Q124205 SYMPTOMS
When a browse is in effect and the table order is changed, the current
record may appear to change.
WORKAROUND
To work around the problem, use the following code:
CLOSE ALL
USE clients
SET ORDER TO Client_id
ON KEY LABEL F4 DO f4_key
ON KEY LABEL F5 DO f5_key
BROWSE NOEDIT
ON KEY
CLOSE ALL
PROCEDURE f4_key
SET ORDER TO 0
SHOW WINDOW clients REFRESH
GO RECNO()
PROCEDURE f5_key
SET ORDER TO 0
SHOW WINDOW clients REFRESH
GO RECNO()
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article. This problem was corrected in
Visual FoxPro 3.0b for Windows.
Modification Type: | Major | Last Reviewed: | 10/15/2003 |
---|
Keywords: | kbbug kbfix KB124205 kbAudDeveloper |
---|
|