FIX: Spinner Doesn't Inherit Color Props from .vcx DefinitionLast reviewed: October 20, 1997Article ID: Q133022 |
3.00
WINDOWS
kbother kbfixlist kbbuglist
The information in this article applies to:
SYMPTOMSA spinner definition created in a visual class library will not display the inherit color definitions (Forecolor, Backcolor, DisabledForecolor, and so on) when instances are created on a form. This occurs whether the Form Designer or the AddObject method is used to create the instances even though the color definitions are in the Properties Sheet. When the form is run, the spinner reverts to a display of the standard color property definitions for a spinner.
WORKAROUNDAdd the following code to the Init method of the spinner definition in the visual class library (VCX):
WITH This .ForeColor = .ForeColor .BackColor = .BackColor .DisabledForeColor = .DisabledForeColor .DisabledBackColor = .DisabledBackColor .SelectedForeColor = .SelectedForeColor .SelectedBackColor = .SelectedBackColor ENDWITH STATUSMicrosoft 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.
MORE INFORMATION
Steps to Reproduce Problem
|
Additional reference words: 3.00 VFoxWin fixlist3.00b buglist3.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |