AxAssist

Main Features Downloads Purchase Forum Support  

Downloads

DownloadsInstallationHistory of changes

Installation



  1. Execute *_setup.exe.
  2. Import AxAssist.xpo file to your Microsoft Dynamics Axapta installation.
  3. Change class EditorScripts as shown below:

    Microsoft Dynamics Axapta 3.0:

    Add this code after variable definition section in ShowScript() method:

    // > AxAssist, 10.10.2007
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(e);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return;
      }
    // < AxAssist, 10.10.2007
    Microsoft Dynamics AX 4.0:

    Add this code after variable definition section in getApplicableScripts() method:
    // > AxAssist, 10.10.2007
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(e);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return connull();
      }
    // < AxAssist, 10.10.2007
    Microsoft Dynamics AX 5.0 (AX2009):

    Add this code after variable definition section in getApplicableScripts() method:
    // > AxAssist, 29.02.2008
      if(DEV_AxAssistSingleton::getThisClass().parmAltMEmulate())
      {
        DEV_AxAssistSingleton::getThisClass().parmEditor(_editor);
        DEV_AxAssistSingleton::getThisClass().parmAltMEmulate(false);
        return connull();
      }
    // < AxAssist, 29.02.2008
  4. Compile EditorScripts class.
  5. Compile AxAssist project.
  6. Open form DEV_AxAssistForm (it will be disappeared after opening).


© 2007 - axassist.com