Friday, January 20, 2012

Launch MenuItem from x++

you can call the menuitem itself using Menufunction.


Here is an example that should work.
static void Menuitem_job(Args _args)
{
MenuFunction mf;
;
mf = new menufunction(menuitemdisplaystr(CustTable), MenuItemType::Display);
mf.run();
}


Above code will open the CustTable From.

No comments:

Post a Comment

Enable UAT database over OneBox DevTest environment using JIT

 Dear Friends, In this Article I will show you how to enable UAT database access for Development machine using just-in-time (JIT). Many time...