How to change the background color

How to change the background color in axapta techncial

where you want to change in form or report.

please be clear then only you can get the better solution.

form and table level

Hi Vardhan,

in the form > grid > controls… select the properties

set the ColorSchema as RGB, and select the BackgroundColor as u want.

thanks,

Valeru.

hi…

change the color of Microsoft Dynamics AX 2009

In the class SysSetUpFormRun class add a following code in run method

public void run()

{

super();

this.design().colorScheme(FormColorScheme::RGB);

this.design().backgroundColor(WinAPI::RGB2int(255,0,0));

}

Regards

It solved my problem. thanks for sharing:)