Hello.
I want to disable elements of a drop down (LONG as I am using from resource description) but using the function below won't do the work for me. I can disable the drop down as a whole but not it's elements. Is there any way I can do this.
Bool RenderSettings::GetDEnabling(GeListNode* node, const DescID& id, const GeData& t_data, DESCFLAGS_ENABLE flags, const BaseContainer* itemdesc){
case ELEMNTTODISABLE:
{
return dldata->GetBool(DL_CHECKBOX) == false; break;
}
return true;
}
Thank you.