If I use this technique ..
procedure TForm1.CheckListBox1MouseEnter(Sender: TObject);
begin
CheckListBox1.ShowHint:=true;
if the mouse cursor is on an item(either is checked true or false) and with no clicking.
CheckListBox1.Hint:=Text of such item;
end;
Please help writing codes for above 2 red-colored lines.