I have experienced a very unusual behavior... I made a slight change to philosophy in enabling fields. Essentially I wanted to show disabled fields that are never editable in an italic font. So I changed my textbox by adding a "lForceDisable" property to it, and then in the refresh, I set:
So I thought it might be something programmatic, but when I changed one of the fields to physically set ENABLED = .F., while FontItalic = .T. it still would not display the INT value. When I set FontBold = .F. and force the field disabled, then it displays fine...
What is it about FontItalic and integer values? Has anyone else experienced this issue?
Best Regards,
Scott
ATS, CDCE, CTIA, CTDC
"Everything should be made as simple as possible, and no simpler."
Code:
IF This.lforcedisable = .T.
This.Enabled = .F.
This.FontItalic = .T.
ELSE
This.Enabled = ThisForm.Editing
ENDIF
So I thought it might be something programmatic, but when I changed one of the fields to physically set ENABLED = .F., while FontItalic = .T. it still would not display the INT value. When I set FontBold = .F. and force the field disabled, then it displays fine...
What is it about FontItalic and integer values? Has anyone else experienced this issue?
Best Regards,
Scott
ATS, CDCE, CTIA, CTDC
"Everything should be made as simple as possible, and no simpler."