June 6, 2006 at 12:41 pm
#3192
prasanna
Participant
Hello
The problem with your code is that you can not have lengthy unicode string. You have to split it up in parts like..
If you have a string defined as follows, it generates C2026:
1 | char sz[] ="imagine a really, really long string here"; |
You could break it up as follows:
1 | char sz[] ="imagine a really, really long string here"; |
So you try it like ….
1 | if ( theApp.m_bRTL ) strText = _T('x''20''2B') + strText; |
May be it can resolve your problem.