Z
zhangqinghe
Unregistered / Unconfirmed
GUEST, unregistred user!
tcreatcheckbox := tcheckbox.Create(self);
tcreatcheckbox.Parent := self;
tcreatcheckbox.SetBounds(64+i*70,680,60,24);
tcreatcheckbox.Caption := '第'+inttostr(i+1)+'条线';
tcreatcheckbox.OnClick:=myboxcheck(i);
其中的myboxcheck如何定义呢,我想在生成的组件checkbox在点时,弹出这个i值。
tcreatcheckbox.Parent := self;
tcreatcheckbox.SetBounds(64+i*70,680,60,24);
tcreatcheckbox.Caption := '第'+inttostr(i+1)+'条线';
tcreatcheckbox.OnClick:=myboxcheck(i);
其中的myboxcheck如何定义呢,我想在生成的组件checkbox在点时,弹出这个i值。