The szTip field is 128 characters long, and unicode. It is of type TCHAR, which is typedef'd as WCHAR. So i have no clue why the following code snippet will not compile.
nid.szTip = _T("ToolTip");
The compile error is
error C2440: '=' : cannot convert from 'const wchar_t [8]' to 'WCHAR [128]'
Any advice?