FilterBar accepts Unicode but displays the infamous '?????' when edit window closes. Added following properties to control:
Public Property Get UnicodeFormat() As Boolean UnicodeFormat = SendMessageByLong(m_hWnd, CCM_GETUNICODEFORMAT, 0&, 0&)End PropertyPublic Property Let UnicodeFormat(bState As Boolean) SendMessageByLong m_hWnd, CCM_SETUNICODEFORMAT, Abs(bState), 0&End PropertyAfter CreateWindowExW call 'UnicodeFormat = True' and now the FilterBar displays the correct Unicode in the Filter window.
|