Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Cant get Nested IIF to work in Grid Init
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00433590
Message ID:
00433609
Vues:
19
Gerard,

>I am trying to set dynamic background color of Grid Rows:
>For each loColumn in This.Columns
> With m.loColumn
> .DynamicBackColor = "Iif(Mem.Mem_Status='SUP',RGB(255,0,0),;
> IIf(Recno() <> This.inCurrentRecNo,RGB(255,255,255),RGB(0,255,0))"
> EndWith
>EndFor

Since, the IIF statement is a text string not an expression you need a close quote before the at the end of the line.

As in:
   .DynamicBackColor = "Iif(Mem.Mem_Status='SUP',RGB(255,0,0),"+;
      "IIf(Recno() &lt;&gt; This.inCurrentRecNo,RGB(255,255,255),RGB(0,255,0))"
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform