Как правильно присвоить Label->Font->Color=RGB
правильно присвоить
Label->Font->Color=RGB(81,81,255);
Все в принципе итак работает, да
компилятор ругается (забодал ругаться).
[C++ Warning] MainUnit.cpp(54): W8006 Initializing TColor with unsigned long
Код:
Label->Font->Color = (TColor) RGB(81,81,255);
Код:
namespace Graphics
{
enum TColor {clMin=-0x7fffffff-1, clMax=0x7fffffff};
}
{
enum TColor {clMin=-0x7fffffff-1, clMax=0x7fffffff};
}