Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can use expression in Caption of check box?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01565148
Message ID:
01565152
Vues:
59
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform