To Change Environment Color in Ax 2012
1.Go go SysSetupFormRun Class.
2.Create Override method RUN .
write the bellow code.
{
super();
this.design().colorScheme(FormColorScheme::RGB);
this.design().backgroundColor(WinAPI::RGB2int(0,254, 0));--->Green.
this.design().backgroundColor(WinAPI::RGB2int(255,0, 0));---->Red.
}
No comments:
Post a Comment