Click here to Skip to main content
15,899,124 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralLink in RichEditCtrl Pin
merkit2-Feb-05 12:48
merkit2-Feb-05 12:48 
GeneralPrivate inheritance question Pin
marinme2-Feb-05 12:03
marinme2-Feb-05 12:03 
GeneralRe: Private inheritance question Pin
Bob Ciora2-Feb-05 12:48
Bob Ciora2-Feb-05 12:48 
GeneralConverting DBCS to Unicode Pin
RYU^^2-Feb-05 11:37
RYU^^2-Feb-05 11:37 
GeneralRe: Converting DBCS to Unicode Pin
Anthony_Yio2-Feb-05 23:26
Anthony_Yio2-Feb-05 23:26 
GeneralRe: Converting DBCS to Unicode Pin
RYU^^3-Feb-05 11:26
RYU^^3-Feb-05 11:26 
GeneralRe: Converting DBCS to Unicode Pin
Anthony_Yio3-Feb-05 15:40
Anthony_Yio3-Feb-05 15:40 
GeneralRe: Converting DBCS to Unicode Pin
RYU^^3-Feb-05 17:34
RYU^^3-Feb-05 17:34 
Hi Anthony,

Thank you for the reply. I think I wasn't clear presenting my question. Currently, when converting single byte EBCDIC, it works fine. In fact, it converts correctly on the single byte EBCDIC. The problem I really facing is when converting 2 bytes at ONE time.

MultiByteToWideChar()/WideCharToMultiByte() converts byte by byte instead of 2 bytes at a time. I am looking at ways to convert 2 bytes at ONE time. Please look at the schema again (sorry if I repeated myself):
--------------------------------------------------------------------
|               EBCDIC               |            ASCII            |
--------------------------------------------------------------------
|               0x43                 |             0xA3            |
|               0xA4                 |             0xCF            |
|            0x43 and 0xA4           |        0x83 and 0x7D        |
--------------------------------------------------------------------


As you can see if 0x43 and 0xA4 is being converted byte by byte, the result is 0xA3 and 0xCF, however, if 0x43 and 0xA4 is being converted together, the result is 0x83 and 0x7D (this is the correct result. I am expecting 0x8 0x7D).

By the way, I did try to use Big-Endian and Little-Endian, but result is still bad.

Thanks for any help in advance. I am really appreciate your help Smile | :)

Cheers...
GeneralRe: Converting DBCS to Unicode Pin
Anthony_Yio3-Feb-05 19:29
Anthony_Yio3-Feb-05 19:29 
GeneralRe: Converting DBCS to Unicode Pin
RYU^^3-Feb-05 19:50
RYU^^3-Feb-05 19:50 
GeneralClipboard functions Pin
TeresaPrice2-Feb-05 7:44
TeresaPrice2-Feb-05 7:44 
GeneralRe: Clipboard functions Pin
BlackDice2-Feb-05 10:43
BlackDice2-Feb-05 10:43 
GeneralShifting Text in Visual C++ Text Editor Pin
K. Shaffer2-Feb-05 6:13
K. Shaffer2-Feb-05 6:13 
GeneralRe: Shifting Text in Visual C++ Text Editor Pin
bluerider2-Feb-05 6:35
bluerider2-Feb-05 6:35 
GeneralRe: Shifting Text in Visual C++ Text Editor Pin
K. Shaffer2-Feb-05 7:30
K. Shaffer2-Feb-05 7:30 
GeneralRe: Shifting Text in Visual C++ Text Editor Pin
alex.barylski2-Feb-05 11:27
alex.barylski2-Feb-05 11:27 
GeneralRe: Shifting Text in Visual C++ Text Editor Pin
Ryan Binns2-Feb-05 17:30
Ryan Binns2-Feb-05 17:30 
GeneralRe: Shifting Text in Visual C++ Text Editor Pin
alex.barylski6-Feb-05 11:10
alex.barylski6-Feb-05 11:10 
GeneralWanted: VS colorer add-in sources Pin
yuri_g2-Feb-05 4:41
yuri_g2-Feb-05 4:41 
GeneralRe: Wanted: VS colorer add-in sources Pin
S Douglas2-Feb-05 19:09
professionalS Douglas2-Feb-05 19:09 
GeneralBinary Files Pin
mcsherry2-Feb-05 3:54
mcsherry2-Feb-05 3:54 
GeneralRe: Binary Files Pin
David Crow2-Feb-05 5:37
David Crow2-Feb-05 5:37 
GeneralRe: Binary Files Pin
mcsherry3-Feb-05 5:01
mcsherry3-Feb-05 5:01 
QuestionFind location of program. Check registry? Pin
ChemmieBro2-Feb-05 3:03
ChemmieBro2-Feb-05 3:03 
AnswerRe: Find location of program. Check registry? Pin
David Crow2-Feb-05 3:18
David Crow2-Feb-05 3:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.