Jan 10, 2012

shut downing the axapta by using x++ code

This is the simplest way to shut down the ax by using x++ code. Info class having the function called shutdown which is Boolean type. By passing the Boolean value true it will shut down the ax.

void AXShutDown( )
{
   info            info;
    ;
    info = new info();
    info.shutDown(true);
}

No comments: