Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Thisform.grid1.column1.dynamicfontItalic not work
Message
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00362478
Message ID:
00363816
Views:
16
>>Thank you, Mike and Andrew. But I got another problem.
>>
>>Why I can't use 'iif(this.text1.value='A',.T.,.F.)'
>>instead of 'iif(myfield='A',.T.,.F.)'?
>>I got an illegal expression error message when used 'this.text1.value' instead.

Another observation (it may be not true in your case and just a typo:
in example shown above you use single quote inside single quote expression. Try to change first single quote to [], e.g.
with thisform.mygrid.column1
    .DynamicFontItalic=[iif(thisform.mygrid.column1.text1.value='A',.T.,.F.)]
endwith
>>
>>Sunny
>
>
>I believe the reason is that the Grid is what "this" is actually refering to at the time the IIF is evaluated. You could try using this.ColumnX.Text1.Value and see if that works.
>
>
>>
>>>>Did you use dynamicfontItalic property?
>>>>I tried this command:
>>>>thisform.grid1.column1.dynamicfontItalic=iif(myfield='A',.T.,.F.)
>>>>I got an error.
>>>
>>>What error? This should work, but it will only evaluate for one record and use that on every field. Use this instead:
>>>
>>>thisform.grid1.column1.dynamicfontItalic = "iif(myfield='A',.T.,.F.)"
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform