Hi,
Create a
EDT name it Gender then in properties enumType : //select the enum name
Use the
below code and enjoy.
static void
Simple_Dialog (Args _args)
{
dialog dialog;
dialogGroup dialogGroup;
dialogField dialogField;
dialog = new
Dialog("Simple Dialog");
dialogField = dialog.addField(extendedTypeStr(Gender));
if (dialog.run())
{
print dialogField.value();
pause;
}
}
TRY Below
static void CreateRadio(Args _args)
{
Dialog dialog = new Dialog();
DialogField dialogField;
FormRadioControl formRadioControl;
;
dialogField = dialog.addField(EnumStr(Sex));
//instead of Sex give your enum name
formRadioControl = dialogField.control();
formRadioControl.helpText("Sample Dialog");
dialog.run();
}
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete