问一个关于Tcolor的问题(100分)

  • 主题发起人 主题发起人 wzhiwei
  • 开始时间 开始时间
W

wzhiwei

Unregistered / Unconfirmed
GUEST, unregistred user!
我定义了一个
const color:array[0..16] of Tcolor= (clAqua,clBlack,clBlue,clDkGray,clGray,clGreen,clLime,clLtGray,clMaroon,clNavy,clOlive,clPurple,clRed,clSilver,clTeal,clWhite,clYellow);
Bcolor:Tcolor;
但是使用 Bcolor:=color[random(16)];却是报错
那位大侠给解决一下
 
color是保留字,跟delphi冲突了
改为
const color1:array[0..16] of Tcolor= (clAqua,clBlack,clBlue,clDkGray,clGray,clGreen,clLime,clLtGray,clMaroon,clNavy,clOlive,clPurple,clRed,clSilver,clTeal,clWhite,clYellow);
Bcolor:Tcolor;

Bcolor:=color1[random(16)];
 
对啊,你定义color是不可以的
 
ft啊,接受答案了
 
后退
顶部