Probably the question is a bit to complex?
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
ADVERTISEMENT
click here


Yahoo! Groups Links

Reply via email to