Thursday 23 June 2011

AX Multiple Windows

To appear one window on the task bar for AX regardless of all the screens opened.

Add the following  code in init method of SysSetupFormRun Class before super().


    if(this.form().design().windowType()==FormWindowType::Standard)
    {
         this.form().design().windowType(FormWindowType::Workspace);
    }

No comments:

Post a Comment