Click to See Complete Forum and Search --> : Converting Characters to UNICODE!!!?


rick
May 10th, 1999, 11:03 AM
I have figured out how to transelate from UNICODE to char by using the strtol() macro...

my problem is now I have to transelate from char to UNICODE any ideas out there???

Thanks
Rick

Rick
May 10th, 1999, 11:03 AM
I have figured out how to transelate from UNICODE to char by using the strtol() macro...

my problem is now I have to transelate from char to UNICODE any ideas out there???

Thanks
Rick

mdwilliams
May 10th, 1999, 02:52 PM
The two functions for converting between regular and UNICODE strings are MultiByteToWideChar() and WideCharToMultiByte(). Look at the help for more information on these functions.

-- Matt