3个Byte类型变量如何转化为字符串?即RGB三色组合成字符串?thanks!!! 问题点数:0、回复次数:1Top
char a,b,c; Byte b; ... a = char(b); AnsiString d; d= a; d+ = b; d+ = c;Top