M
myufeiyang
Unregistered / Unconfirmed
GUEST, unregistred user!
我在做一个抽奖地程序,要实现身份证号不停地滚动直到按下空格键。我
在label1中显示身份证号
adoquery2.SQL.Clear ;
adoquery2.SQL.Add('select * from nameset');
adoquery2.Active :=true;
adoquery2.Open ;
while ch=true do
begin
num:=random(adoquery2.RecordCount);
adoquery2.MoveBy(num);
aa:=adoquery2.Fieldbyname('name').AsString ;
label2.Caption :=aa;
if ch=false then
exit;
end;
但是我的 label1 中文字不能滚动,label1 的字符总是不便,而且按下space 也
不能退出,请大家帮忙或给出好的方法?
在label1中显示身份证号
adoquery2.SQL.Clear ;
adoquery2.SQL.Add('select * from nameset');
adoquery2.Active :=true;
adoquery2.Open ;
while ch=true do
begin
num:=random(adoquery2.RecordCount);
adoquery2.MoveBy(num);
aa:=adoquery2.Fieldbyname('name').AsString ;
label2.Caption :=aa;
if ch=false then
exit;
end;
但是我的 label1 中文字不能滚动,label1 的字符总是不便,而且按下space 也
不能退出,请大家帮忙或给出好的方法?