473,396 Members | 1,996 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

converting application to UNICODE

Hello everyone and thanks in advance.

I have a multilingual application which has been built in MFC VC++ 6.0
(non-Unicode). It support English German Hungarian so far, which has been
fine. But now I need it to work on Russian computers and I realized that the
application should be converted to Unicode to work in Russian.

I am totally new to .NET so I'm not sure of this, but I read somewhere that
if converted my apllication to .NET (manages C++) and specify Encoding.UTF8
it should work???

Would this be a better approach (make it .NETtable) or shouls I convert my
existing code in VC++6.0 to convert it to Unicode ( wcscat, wcscpy etc.)

Thanks a lot
Srishti
Nov 17 '05 #1
5 2500
Hi Srishti,
I am totally new to .NET so I'm not sure of this, but I read somewhere
that if converted my apllication to .NET (manages C++) and specify
Encoding.UTF8 it should work???

Would this be a better approach (make it .NETtable) or shouls I convert my
existing code in VC++6.0 to convert it to Unicode ( wcscat, wcscpy etc.)


For the reason that the VC++.NET can not convert your MFC program to the
managed C++ program, the practical convention is migrating your current
code to Unicode-compatible code, to do this, you need to take the following
steps(digested from the <<Developing International Software>> from MS
Press):

1. Modify your code to use generic data types.
such as char, char* -> TCHAR and TCHAR*, which defined in the Win32
file WINDOWS.H, or to _TCHAR as defined in the Visual C++ file TCHAR.H.
Replace instances of LPSTR and LPCH with LPTSTR and LPTCH.

2. Modify your code to use generic function prototypes.
such as use the C run-time call _tcslen instead of strlen, and use the
Win32 API SetWindowText instead of SetWindowTextA.

3. Surround any character or string literal with the TEXT macro.
The TEXT macro conditionally places an "L" in front of a character
literal or a string literal definition.

4. Create generic versions of your data structures.
Type definitions for string or character fields in structures should
resolve correctly based on the UNICODE compile-time flag.

5. Change your build process. When you want to build a Unicode version of
your application, both the Win32 compile-time flag UNICODE and the C
run-time compile-time flag _UNICODE must be defined.

6. Adjust pointer arithmetic.
Subtracting char* values yields an answer in terms of bytes; subtracting
wchar_t* values yields an answer in terms of 16-bit chunks. When
determining the number of bytes (for example, when allocating memory for a
string), multiply the length of the string in symbols by sizeof(TCHAR).
When determining the number of characters from the number of bytes, divide
by sizeof(TCHAR).

7. Check for any code that assumes a character is always 1 byte long.
Code that assumes a character's value is always less than 256 (for
example, code that uses a character value as an index into a table of size
256) must be changed. Make sure your definition of NULL is 16 bits long.

For more detailed direction on how to migrate to Unicode Applications in
VC++, I suggest you can refer to the Chapter 3 "Unicode" of the book
<<Developing International Software>> 2nd edition.
Hope this helps!

Best regards,

Gary Chang
Microsoft Community Support
--------------------
Get Secure! ¡§C www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
http://support.microsoft.com/default...sdn/nospam.asp
&SD=msdn

This posting is provided "AS IS" with no warranties, and confers no rights.


Nov 17 '05 #2
Thanks Gary,
But I was also wondering how much work it would be to convert my existing
VC++6.0 application to managed C++. And if it is in managed C++would it be in
UNICODE?

Regards
Srishti

"Gary Chang[MSFT]" wrote:
Hi Srishti,
I am totally new to .NET so I'm not sure of this, but I read somewhere
that if converted my apllication to .NET (manages C++) and specify
Encoding.UTF8 it should work???

Would this be a better approach (make it .NETtable) or shouls I convert my
existing code in VC++6.0 to convert it to Unicode ( wcscat, wcscpy etc.)


For the reason that the VC++.NET can not convert your MFC program to the
managed C++ program, the practical convention is migrating your current
code to Unicode-compatible code, to do this, you need to take the following
steps(digested from the <<Developing International Software>> from MS
Press):

1. Modify your code to use generic data types.
such as char, char* -> TCHAR and TCHAR*, which defined in the Win32
file WINDOWS.H, or to _TCHAR as defined in the Visual C++ file TCHAR.H.
Replace instances of LPSTR and LPCH with LPTSTR and LPTCH.

2. Modify your code to use generic function prototypes.
such as use the C run-time call _tcslen instead of strlen, and use the
Win32 API SetWindowText instead of SetWindowTextA.

3. Surround any character or string literal with the TEXT macro.
The TEXT macro conditionally places an "L" in front of a character
literal or a string literal definition.

4. Create generic versions of your data structures.
Type definitions for string or character fields in structures should
resolve correctly based on the UNICODE compile-time flag.

5. Change your build process. When you want to build a Unicode version of
your application, both the Win32 compile-time flag UNICODE and the C
run-time compile-time flag _UNICODE must be defined.

6. Adjust pointer arithmetic.
Subtracting char* values yields an answer in terms of bytes; subtracting
wchar_t* values yields an answer in terms of 16-bit chunks. When
determining the number of bytes (for example, when allocating memory for a
string), multiply the length of the string in symbols by sizeof(TCHAR).
When determining the number of characters from the number of bytes, divide
by sizeof(TCHAR).

7. Check for any code that assumes a character is always 1 byte long.
Code that assumes a character's value is always less than 256 (for
example, code that uses a character value as an index into a table of size
256) must be changed. Make sure your definition of NULL is 16 bits long.

For more detailed direction on how to migrate to Unicode Applications in
VC++, I suggest you can refer to the Chapter 3 "Unicode" of the book
<<Developing International Software>> 2nd edition.
Hope this helps!

Best regards,

Gary Chang
Microsoft Community Support
--------------------
Get Secure! ¡§C www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
http://support.microsoft.com/default...sdn/nospam.asp
&SD=msdn

This posting is provided "AS IS" with no warranties, and confers no rights.


Nov 17 '05 #3
Also, is it true that Unicode applications don't work on Win98/Me? Is there
any workaround. I read about Unicows.dll which provide a Unicode layer for
windows 98/me but it only works with an application in .NET ( doed that mean
managed C++, or the application is not managed just compiled in Visual
Studio.NET would work??? )

Thanks & Regard
Srishti

"Gary Chang[MSFT]" wrote:
Hi Srishti,
I am totally new to .NET so I'm not sure of this, but I read somewhere
that if converted my apllication to .NET (manages C++) and specify
Encoding.UTF8 it should work???

Would this be a better approach (make it .NETtable) or shouls I convert my
existing code in VC++6.0 to convert it to Unicode ( wcscat, wcscpy etc.)


For the reason that the VC++.NET can not convert your MFC program to the
managed C++ program, the practical convention is migrating your current
code to Unicode-compatible code, to do this, you need to take the following
steps(digested from the <<Developing International Software>> from MS
Press):

1. Modify your code to use generic data types.
such as char, char* -> TCHAR and TCHAR*, which defined in the Win32
file WINDOWS.H, or to _TCHAR as defined in the Visual C++ file TCHAR.H.
Replace instances of LPSTR and LPCH with LPTSTR and LPTCH.

2. Modify your code to use generic function prototypes.
such as use the C run-time call _tcslen instead of strlen, and use the
Win32 API SetWindowText instead of SetWindowTextA.

3. Surround any character or string literal with the TEXT macro.
The TEXT macro conditionally places an "L" in front of a character
literal or a string literal definition.

4. Create generic versions of your data structures.
Type definitions for string or character fields in structures should
resolve correctly based on the UNICODE compile-time flag.

5. Change your build process. When you want to build a Unicode version of
your application, both the Win32 compile-time flag UNICODE and the C
run-time compile-time flag _UNICODE must be defined.

6. Adjust pointer arithmetic.
Subtracting char* values yields an answer in terms of bytes; subtracting
wchar_t* values yields an answer in terms of 16-bit chunks. When
determining the number of bytes (for example, when allocating memory for a
string), multiply the length of the string in symbols by sizeof(TCHAR).
When determining the number of characters from the number of bytes, divide
by sizeof(TCHAR).

7. Check for any code that assumes a character is always 1 byte long.
Code that assumes a character's value is always less than 256 (for
example, code that uses a character value as an index into a table of size
256) must be changed. Make sure your definition of NULL is 16 bits long.

For more detailed direction on how to migrate to Unicode Applications in
VC++, I suggest you can refer to the Chapter 3 "Unicode" of the book
<<Developing International Software>> 2nd edition.
Hope this helps!

Best regards,

Gary Chang
Microsoft Community Support
--------------------
Get Secure! ¡§C www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
http://support.microsoft.com/default...sdn/nospam.asp
&SD=msdn

This posting is provided "AS IS" with no warranties, and confers no rights.


Nov 17 '05 #4
>I read about Unicows.dll which provide a Unicode layer for
windows 98/me but it only works with an application in .NET ( doed that mean
managed C++, or the application is not managed just compiled in Visual
Studio.NET would work???


You can use unicows with VC6 or VC7(.1) - native code.

Dave
--
MVP VC++ FAQ: http://www.mvps.org/vcfaq
Nov 17 '05 #5
Hi Srishti,
But I was also wondering how much work it would be to convert my existing
VC++6.0 application to managed C++.
It would be a good many work to do if you just mean you want to convert
your VC6 MFC application to a Managed C++ application, just like rewrite
the whole program, there isn't a managed version MFC.
And if it is in managed C++would it be in UNICODE?


The managed char class and string type hold the UNICODE characters and
string.
Thanks!

Best regards,

Gary Chang
Microsoft Community Support
--------------------
Get Secure! ¡§C www.microsoft.com/security
Register to Access MSDN Managed Newsgroups!
http://support.microsoft.com/default...sdn/nospam.asp
&SD=msdn

This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Peter Wilkinson | last post by:
Hello tlistmembers, I am using the encoding function to convert unicode to ascii. At one point this code was working just fine, however, now it has broken. I am reading a text file that has is...
10
by: Maxim Kasimov | last post by:
there are a few questions i can find answer in manual: 1. how to define which is internal encoding of python unicode strings (UTF-8, UTF-16 ...) 2. how to convert string to UCS-2 (Python 2.2.3...
3
by: Supratim | last post by:
Hi, For past few weeks I am working on a function that would take encoded Unicode characters from query string of http requests and then decode them back to Unicode numbers. I have full success...
8
by: Alphaboomer | last post by:
I'm using the following code to retrieve a list of all the Categories used by Microsoft Outlook: sub test() Dim objWSHShell As Object Dim strCategoryList As Variant Set objWSHShell =...
0
by: kurotsuke | last post by:
I need to convert a sequence of keys presses on the keyboard into the corresponding character code (UNICODE). I'm intercepting the KeyUp event (using an external hooking library) and need to get...
2
by: Gidi | last post by:
Hi, I'm writing a C# win application program, and i need to transfer my hebrew letters from unicode to ascii, now if i use the ascii encoding it writes me ??? instead of the hebrew letter i've...
2
by: Paolo | last post by:
I imported a VC++6.0 project into VC++7.1. The conversion operation makes a mess with Preprocessor Definitions, adding a "$(NoInherit)" for each file. For example: I had a DLL project in VC++6.0...
1
by: yashgt | last post by:
Hi, We have stored proc name proc_test(str nvarchar(30)). So far this proc has been invoked from a .NET application assuming that only English character strings will be passed to it. The calls...
2
by: Nikola Skoric | last post by:
What I have is a bunch of text in arabic, and series of Unicode bytes which represent those arabic words (like this: \'c2\'e4\'f6\'d3\'f3\'c9 \'f1). Now I have to figure out how to convert my...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.