有关combobox中的hint问题(最近问得多,么分了,可以再加分)
因为combobox中有的item太长,无法完全显示,采用hint的办法显示
在onselect中实现了
procedure TfrmPingGuManage.cboAnswer1Select(Sender: TObject);
begin
cboanswer1.Hint:=cboanswer1.Text;
end;
现在想做成不用选择,随着鼠标移动在不同的item上,hint就随着响应出来。
[解决办法]
你的代码是可以的。经试验没有出现你所说的情况。可以试着把Combobox的Style属性改一下设置试试。