W
wanwqing
Unregistered / Unconfirmed
GUEST, unregistred user!
使用ListView控件的问题
我使用ListView控件出现如下问题:
我想在ListView的OnClick事件中获取鼠标所指行(当前行)。
程序执行时,ListView的项目只有3行(从第4行开始为空)。
用鼠标点击空行(第4行以后任何一行),则出现如下错误提示:
Project Stk.exe raised exception class EAccessViolation with
message 'Access Violation at adress 00445068 in module 'Stk.exe'
Read of address FFFFFFFF'. Process stopped.Use Step or Run to continue.
ListView控件的OnClick事件:
procedure TBrowseForm1.ListView1Click(Sender: TObject);
begin
Current:=ListView1.Selected.Index;
label1.caption:=inttostr(Current);
end;
请问各位老兄如何解决???
我使用ListView控件出现如下问题:
我想在ListView的OnClick事件中获取鼠标所指行(当前行)。
程序执行时,ListView的项目只有3行(从第4行开始为空)。
用鼠标点击空行(第4行以后任何一行),则出现如下错误提示:
Project Stk.exe raised exception class EAccessViolation with
message 'Access Violation at adress 00445068 in module 'Stk.exe'
Read of address FFFFFFFF'. Process stopped.Use Step or Run to continue.
ListView控件的OnClick事件:
procedure TBrowseForm1.ListView1Click(Sender: TObject);
begin
Current:=ListView1.Selected.Index;
label1.caption:=inttostr(Current);
end;
请问各位老兄如何解决???