Options

Axapta

kram1976kram1976 Member Posts: 19
edited 2004-11-15 in Dynamics AX
Hi,
I wanna to have a dialog with a 2 option button in it in Axapta.
Do any one know about having radiobutton in a Dialog. Pls reply.

Thanks.

Ramki
Ramakrishnan

Comments

  • Options
    jinxjinx Member Posts: 10
    1. Create a new Base Enum, with "Style" Radio button (look at the properties of the base enum.

    2. add that Field to your dialog.

    it should look like this ("Radio" is the base enum with style "Radio button", i just created)

    dialog d = new Dialog("Axapta Option Test");
    ;
    d.addField(typeid(Radio));
    d.run();

    i hope this is what you looking for

    regards
    jinx
  • Options
    kram1976kram1976 Member Posts: 19
    Hi Jinx,

    Thanks a lot for your help. I tried and it's working.


    Ramki.
    Ramakrishnan
Sign In or Register to comment.