A place to share Microsoft Dynamics Ax knowledge.Writing this blog has been to try and make the process of learning AX
programming easier for developers who are new to AX.I hope this blog helps you to
become an efficient AX developer.
Welcome to the wonderful world of AX programming!
Thursday, May 5, 2011
How to Shut Down the Axapta through X++
Hi,
Here is the code for Shut Down Axapta.
public static void ShutDownAxapta()
{
info info;
;
info=new info();
info.shutDown(true);
}
No comments:
Post a Comment
Leave your comments and solutins