Friday, May 03, 2013

How to Print welcome message on Start-up of AX 2012 Client ?


Hello Friends,

Today I will demonstrate you that How to Print welcome message on AX rich & development client startup. Follow below steps when you want to execute some business logic in AX Startup.

  • Open AOT
  • Go to Classes -> Info
  • Open the StartupPost() method
  • Type following Code there


void startupPost()
{
     //your code goes here
    box::info("Welcome to Dynamics AX 2012 world!!!!");
}

Happy DAXing……. J



No comments:

Post a Comment

Enable / Disable form control through COC

 [ExtensionOf(formStr(FormName))] final class FormName_Extension {     /// <summary>     /// control visibility of SETIndicator flag b...