SoloCodigo
CLR: .Net / Mono / Boo / Otros CLR => C# => Mensaje iniciado por: alayle en Sábado 19 de Enero de 2008, 00:31
Título:
Problem Wyth Colors (uint, Hexa)
Publicado por:
alayle
en
Sábado 19 de Enero de 2008, 00:31
This is the problem, i have a ocx, that have one control and one uint Property, like this
Property color, acept values uint, Manually i set the value as this:
object.color = 0xFFFFFF;
for wythe color, i want to set the color using:
ocxObject.color = colorDialog1.Color; /// this is the error
and i get the error, because the ocxObject.color only acept uint
i make the convertion:
ocxObject.color = (uint)(colorDialog1.Color);
and not have error in code but, the colors not Match.
any solutions thanks
Título:
Re: Problem Wyth Colors (uint, Hexa)
Publicado por:
JuanK
en
Sábado 19 de Enero de 2008, 04:33
in the rarely case you use CSharp...
just use this:
Código: Text
ocxObject.color = colorDialog1.Color.ToArgb();
have fun.
by the way ...
why you write/use an spanish forum to ask your questions in english???