S
SanDao
Unregistered / Unconfirmed
GUEST, unregistred user!
小弟在ListBox1在其DrawItem事件中用Rect函数时(事件原型如下)
procedure TForm6.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
//注意参数中有Rect: TRect
Begin
Rect(0,0,100,100);//出错语句
end;
////////////////////////////////////////////////////
编译器告知:Missing Operator or Semicolon!(函数名和变量名它难道不分吗?)
诸位不妨试试!为什么呀!(我用的是Delphi6+pack2)
procedure TForm6.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
//注意参数中有Rect: TRect
Begin
Rect(0,0,100,100);//出错语句
end;
////////////////////////////////////////////////////
编译器告知:Missing Operator or Semicolon!(函数名和变量名它难道不分吗?)
诸位不妨试试!为什么呀!(我用的是Delphi6+pack2)