Showing posts with label To Change the Environment Color in Ax 2012. Show all posts
Showing posts with label To Change the Environment Color in Ax 2012. Show all posts

Monday, 4 June 2018

To Change the Environment Color in Ax 2012

To Change Environment Color in Ax 2012

1.Go go SysSetupFormRun Class.
2.Create Override method RUN .

write the bellow code.

public void run()
{
    super();
    this.design().colorScheme(FormColorScheme::RGB);
    this.design().backgroundColor(WinAPI::RGB2int(0,254, 0));--->Green.
   this.design().backgroundColor(WinAPI::RGB2int(255,0, 0));---->Red.
}