Any idea why
myVertOptionButtonList->SetButtonById(iModelData);
only works if iModelData=0?
and myVertOptionButtonList->LabeledButtonId(); always return 0.
What do I miss here? thanks
Vertical option button list question
Possible you doesn't define 'id' in resource definiition.
See sample:
RESOURCE ARRAY r_myprofile_page1_checkbox
{
items=
{
OPBUT { text="User name"; id=EMyProfileChkboxShowByDefaultUsername;},
OPBUT { text="BT Device name"; id=EMyProfileChkboxShowByDefaultBTDevicename;}
};
}
Very valuable answer, thanks!