Hi,

I am using a CListCtrl object and setting the items in it. Every item in the list is an LVITEM. The mask on one of the sub items is LVIF_TEXT.

LVITEM
lvItem.mask = LVIF_TEXT;
lvItem.pszText = "&&&&"

the pszText is "&&&&" ( 4 & symbols). However, there seems to be a truncation issue when this list is displayed and only "&&" ( 2 & are displayed).

Could you help me in figuring out why this is happening? Is there a known bug in LVIF_TEXT where it truncates symbols other than alphabets and numbers??