Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Optiongroup problem
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00399631
Message ID:
00400006
Views:
17
>>>I am trying to use an option group with two buttons, Yes and No, to represent the state of a logical field.
>>>
>>>the interactivechange,
>>>
>>>IF THIS.Value = 'Yes'
>>> REPLACE ACTCOMPL.nontrad WITH .T.
>>>ELSE
>>> REPLACE ACTCOMPL.nontrad WITH .F.
>>>ENDIF
>>>
>>>seems to work and display correctly,
>>>but in the init I have:
>>>
>>>IF ACTCOMPL.nontrad
>>> THIS.Value = 'Yes'
>>>ELSE
>>> THIS.Value = 'No'
>>>ENDIF
>>>
>>>to display the current value when the form opens, but it always displays 'No' regardless of the field value
>>>
>>>Any suggestions?
>>>TIA
>>>
>>>Al
>
>Al,
>
>At the second thought, put this code to Init of the form, not the Init of the Option Group, e.g.
>Form.Init
>
>
>  ** Your other code
>  select yourAlias
>  with this.optGroup
>   IF ACTCOMPL.nontrad
>      .Option1.Value = 1

Nadya,

Thank you for your suggestions.  I've got it working now, I think..

Al Allison

>    ELSE
>     .Option2.Value = 1
>    ENDIF
>
>  endwith
>
Previous
Reply
Map
View

Click here to load this message in the networking platform