Z zw84611 Unregistered / Unconfirmed GUEST, unregistred user! 2002-01-09 #2 procedure TForm1.ListBox1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); var p:TPoint; index:integer; begin p.x := x; p.y := y; index:=ListBox1.ItemAtPos(p,true); ListBox1.ItemIndex:=index; end;
procedure TForm1.ListBox1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); var p:TPoint; index:integer; begin p.x := x; p.y := y; index:=ListBox1.ItemAtPos(p,true); ListBox1.ItemIndex:=index; end;