list index out of bounds(0) 怪(100分)

  • 主题发起人 主题发起人 jakey_007
  • 开始时间 开始时间
J

jakey_007

Unregistered / Unconfirmed
GUEST, unregistred user!
都说这个问题出现是因为list类型的控件引起的,但我在系统刚运行弹出登陆对话框,就出这个问题。而且,奇怪的是。在我安装了DELPHI的机器上就可以顺利通过,在客户机上就出现这个问题。为什么?
 
下标有问题吧...代码研究一下看
 
我在登陆窗体中也没有拥有下标的控件啊
 
我的系统采用是在主窗体上利用timer控件事件创建登陆窗体。<br>现在的现象是在别的客户机上只能看到登陆窗体看不到主窗体。进行登陆操作,提示错误
 
我用了rz类控件
 
rz类控件的问题……
 
function CheckPass(aLoingName: string): Boolean;<br>begin<br>&nbsp; with dm.ado_user do<br>&nbsp; begin<br>&nbsp; &nbsp; Close;<br>&nbsp; &nbsp; SQL.Clear;<br>&nbsp; &nbsp; SQL.Add('Select * from sysuser where id =: para1') ;<br>&nbsp; &nbsp; Parameters[0].Value := aLoingName;<br>&nbsp; &nbsp; Open;<br>&nbsp; &nbsp; if not IsEmpty then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; //UserName_D := FieldValues['姓名'];<br>&nbsp; &nbsp; &nbsp; PassWord_D := FieldValues['password'];<br>&nbsp; &nbsp; &nbsp; Result := True;<br>&nbsp; &nbsp; end;<br>&nbsp; end;<br>end;
 
仔細看下自己的代碼,應該不是RZ控件的問題。。。
 
delphi天堂群:4654765,不去是你的损失
 
问题解决了,但不是上面的回答。
 
后退
顶部