Turn on/off unicode in visual c++ 6
-
searching the net i have found how to turn off UNICODE in vc7 but cant find where or how to do it in vc++6 please help thanks
-
searching the net i have found how to turn off UNICODE in vc7 but cant find where or how to do it in vc++6 please help thanks
-
searching the net i have found how to turn off UNICODE in vc7 but cant find where or how to do it in vc++6 please help thanks
To turn off: 1. Select "Project->Settings" from menu. 2. Select "C/C++" tab. 3. In the "Preprocesor definitions" edit: 3a. Remove "_UNICODE" and "UNICODE". 3b. Add "_MSCS". To turn on: 1. Select "Project->Settings" from menu. 2. Select "C/C++" tab. 3. In the "Preprocesor definitions" edit: 3a. Remove "_MSCS". 3b. Add "_UNICODE" and "UNICODE". Steve
-
To turn off: 1. Select "Project->Settings" from menu. 2. Select "C/C++" tab. 3. In the "Preprocesor definitions" edit: 3a. Remove "_UNICODE" and "UNICODE". 3b. Add "_MSCS". To turn on: 1. Select "Project->Settings" from menu. 2. Select "C/C++" tab. 3. In the "Preprocesor definitions" edit: 3a. Remove "_MSCS". 3b. Add "_UNICODE" and "UNICODE". Steve
Stephen Hewitt wrote:
Remove "_MSCS".
Stephen Hewitt wrote:
Add "_MSCS".
Stephen shouldn't it be
_MBCS
?
Nibu thomas Software Developer
-
Stephen Hewitt wrote:
Remove "_MSCS".
Stephen Hewitt wrote:
Add "_MSCS".
Stephen shouldn't it be
_MBCS
?
Nibu thomas Software Developer
thx for the replys taught it would help me with an error im getting but no luck there see here for my error http://www.codeproject.com/script/comments/forums.asp?forumid=1647&fr=101&select=1392516#xx1392516xx
-
Stephen Hewitt wrote:
Remove "_MSCS".
Stephen Hewitt wrote:
Add "_MSCS".
Stephen shouldn't it be
_MBCS
?
Nibu thomas Software Developer
Oops. You're right, it should be
_MBCS
. Steve -
Oops. You're right, it should be
_MBCS
. SteveWas wondering about that since you wrote it twice.
Nibu thomas Software Developer
-
Was wondering about that since you wrote it twice.
Nibu thomas Software Developer
A text book example of a cut and paste error (the second one). Steve