J
Joe Thompson
Hi,
I am using managed C++ and want to programmatically set the forms BackColor
from either four values (A,R,G, B) or one value ARGB. I tried putting this
is the form's load method:
Color clr;
clr.FromArgb(ARGB);
this->BackColor = clr;
It compiles and runs but the color doesn't change. Any ideas or better ways
of doing this?
Thank you,
Joe
I am using managed C++ and want to programmatically set the forms BackColor
from either four values (A,R,G, B) or one value ARGB. I tried putting this
is the form's load method:
Color clr;
clr.FromArgb(ARGB);
this->BackColor = clr;
It compiles and runs but the color doesn't change. Any ideas or better ways
of doing this?
Thank you,
Joe