Axapta 3 menu in AX 2009

January 28, 2010 at 18:58
filed under Dynamics AX
Tagged , ,

Are you one of those people who always minimize the content pane in AX 2009?
Are you one of those people who don’t know what the breadcrumb on top of the AX screen is for?
Do you already execute a job to disable the content pane on startup?

Then you might feel totally nostalgic when you see the Axapta 3 menu appearing after you run the following job in AX 2009.

static void Axapta30Nostalgia(Args _args)
{
    Menu menu;
    #admin
    ;
   
    menu = new Menu(#MainMenu);
    menu.AOTrun();
}

1 comment

RSS / trackback

  1. Philippe V

    Cool! If you call your function from the Application.Startup(Post) it’s like the old days ;-)

    Grts,

    Philippe

respond