- Aug
- 2,320
- 111
I communicate with a person via Yahoo Mail. All correspondence is in English.
On occasion, I copy text from an email, and paste it into an app that allows me to send a text message via SMS to a cell phone.
For whatever reason, when the person receives the SMS message on their cell phone, the text is in Chinese characters. So, I tried sending the same text to my cell phone, and it also arrived in Chinese characters.
The problem is unique only to this contact in my Yahoo Mail.
With the copied text on the clipboard, I used CLIPFMT.BTM from http://jpsoft.com/forums/threads/detect-clipboard-format.5227/#post-30210 and found the following;
My solution was to create the CLP2TXT.BTM...
...which, when run, converts the text on the clipboard to plain text. After running CLP2TXT.BTM, CLIPFMT.BTM now returns...
...and the text no longer appears as Chinese characters when I send it via SMS to a cell phone.
Joe
On occasion, I copy text from an email, and paste it into an app that allows me to send a text message via SMS to a cell phone.
For whatever reason, when the person receives the SMS message on their cell phone, the text is in Chinese characters. So, I tried sending the same text to my cell phone, and it also arrived in Chinese characters.
The problem is unique only to this contact in my Yahoo Mail.
With the copied text on the clipboard, I used CLIPFMT.BTM from http://jpsoft.com/forums/threads/detect-clipboard-format.5227/#post-30210 and found the following;
Code:
There are 11 clipboard formats.
49161 - DATAOBJECT
49590 - UNKNOWN
49403 - UNKNOWN
49808 - UNKNOWN
49810 - UNKNOWN
13 - CF_UNICODETEXT
1 - CF_TEXT
49811 - UNKNOWN
49171 - Ole Private Data
16 - CF_LOCALE
7 - CF_OEMTEXT
My solution was to create the CLP2TXT.BTM...
Code:
@setlocal
@echo off
set thefile=%@unique[]
type clip: > %thefile
type %thefile > clip:
if exist %thefile del /w %thefile > nul
Endlocal
...which, when run, converts the text on the clipboard to plain text. After running CLP2TXT.BTM, CLIPFMT.BTM now returns...
Code:
13 - CF_UNICODETEXT
16 - CF_LOCALE
1 - CF_TEXT
7 - CF_OEMTEXT
...and the text no longer appears as Chinese characters when I send it via SMS to a cell phone.
Joe