I thought it could be done by:
Adding a radiobutton control to the dialog, based on a baseEnum.
Then add a default combobox.
Then add a function to the dialog which is tied to the
selectionChange of the radioButton.
And then the fun part ofcourse is to see something changing when
hitting another radioitem.
public int selectionChange()
{
int ret = this.selection();
;
combobox.clear();
switch (ret)
{
case 0:
combobox.enumType(enumnum(MyBaseEnum));
break;
case 1:
break;
}
But the thing is.....
How do I tie this function to the fresh added radiobutton control of
the dialog? Please, could some one take a look at this?
/b
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

