I have a CListCtrl object and I use:
AddData(m_listControl, 0, 0, " Abc ");
This works fine in older version of Visual Studio (2008). However in Visual Studio 2013 I am using UNICODE character set, and the above displays a strange font in the List Control Box.
Can someone please tell me how to insert (AddData or another way) so that the CListCtrl displays english character set?
Use TEXT( " Abc " ). TEXT() macro makes strings Unicode or ASCII depending on compiler settings.