Thursday, 6 September 2018

SysSetupFormRun back ground Colour in AX 2012 X++

SysSetupFormRun
Add below method: 
Public void run()
{
    super();
    this.design().colorScheme(FormColorScheme::RGB);
    this.design().backgroundColor(Winapi::RGB2int(251,181,251));

}

No comments:

Post a Comment

Setting VendInvoiceInfoTable default values for custom fields - D365 FO

  When creating a vendor invoice and you are trying to populate custom fields on table VendInvoiceInfoTable you may find that the following ...