Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can use expression in Caption of check box?
Message
 
To
05/02/2013 09:45:52
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP1
Miscellaneous
Thread ID:
01565148
Message ID:
01565152
Views:
61
>Hi,
>
>I have check box in a container used in a grid. I want the check box caption say "Yes" if the field it is bound to is .T./1 or "No" if .F./0. First I tried to do it in the Refresh method of the check box but it never fires (probably because the checkbox is in the container). Then I tried to put an IIF() expression in the Caption field but all it does, is showing the expression.
>How would you do it?

Use Some of the Dynamic* Methods of the column.
thisform.Grid.ColumnWithCheckBox.DynamicFontBold = "thisform.SetCaption"


*** thisform.SetCaption Method
IF thisform.Grid.ColumnWithCheckBox.Check1.Value
   thisform.Grid.ColumnWithCheckBox.Check1.Caption = "Yes"
ELSE
  thisform.Grid.ColumnWithCheckBox.Check1.Caption = "No"
ENDIF
RETURN .f.
NOT TESTED!!!
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform