Skip to main content

Posts

Showing posts with the label run menu

Call other form on button clicked event in MSD axapta

This is sample code to Call other form on button clicked event in axapta. Just write code on button clicked event. That form will be run on event. You can call this code on button click method . There are two way to do this one is that you care menu item and drag that menu item in form other is you need to write code like below. void clicked() { super(); new MenuFunction(menuitemdisplaystr(FormMenuitemname), MenuItemType::Display).run(); }