Click here to Skip to main content
15,887,376 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Retaining whitespace within macro replacement text Pin
PIEBALDconsult22-Jan-11 9:00
mvePIEBALDconsult22-Jan-11 9:00 
GeneralRe: Retaining whitespace within macro replacement text Pin
jschell22-Jan-11 12:01
jschell22-Jan-11 12:01 
GeneralRe: Retaining whitespace within macro replacement text Pin
PIEBALDconsult22-Jan-11 18:06
mvePIEBALDconsult22-Jan-11 18:06 
GeneralRe: Retaining whitespace within macro replacement text Pin
jschell23-Jan-11 10:40
jschell23-Jan-11 10:40 
QuestionUnknown problem with non-english languages [modified] Pin
rahul.kulshreshtha21-Jan-11 23:17
rahul.kulshreshtha21-Jan-11 23:17 
AnswerRe: Unknown problem with non-english languages Pin
Andrew Brock21-Jan-11 23:39
Andrew Brock21-Jan-11 23:39 
GeneralRe: Unknown problem with non-english languages Pin
rahul.kulshreshtha21-Jan-11 23:53
rahul.kulshreshtha21-Jan-11 23:53 
GeneralRe: Unknown problem with non-english languages Pin
Andrew Brock22-Jan-11 0:38
Andrew Brock22-Jan-11 0:38 
If I am understanding this correctly, it installs ok into the folder, but wont run from it.

If that is correct:
The English language is in the ASCII character set. The Unicode and Multi-Byte character sets are just supersets of the ASCII character set.
Having the Unicode character set enabled is only half the story. You need to use the Unicode functions.
I am certain if you are using the Unicode functions, then it will work.

For functions like fopen are ASCII, you need to use it like FILE *pFile = _tfopen(_T("C:\\выполнятЬ"), _T("w"));. Also not that the source code file needs to be saved in Unicode format if you use non-english strings in it like that one. Visual Studio will prompt you if this needs to happen.
For the Win32 API functions, they will automatically change over to use the Unicode versions unless your function names finish with a capital A

If it aren't understanding it correctly, and it doesn't install into the folder, then try a different setup program.
GeneralRe: Unknown problem with non-english languages Pin
rahul.kulshreshtha22-Jan-11 0:56
rahul.kulshreshtha22-Jan-11 0:56 
GeneralRe: Unknown problem with non-english languages Pin
Andrew Brock22-Jan-11 1:21
Andrew Brock22-Jan-11 1:21 
GeneralRe: Unknown problem with non-english languages Pin
rahul.kulshreshtha22-Jan-11 2:13
rahul.kulshreshtha22-Jan-11 2:13 
GeneralRe: Unknown problem with non-english languages Pin
Andrew Brock22-Jan-11 2:39
Andrew Brock22-Jan-11 2:39 
GeneralRe: Unknown problem with non-english languages Pin
Richard MacCutchan22-Jan-11 2:11
mveRichard MacCutchan22-Jan-11 2:11 
GeneralRe: Unknown problem with non-english languages Pin
Andrew Brock22-Jan-11 2:27
Andrew Brock22-Jan-11 2:27 
GeneralRe: Unknown problem with non-english languages Pin
Richard MacCutchan22-Jan-11 6:30
mveRichard MacCutchan22-Jan-11 6:30 
AnswerRe: Unknown problem with non-english languages Pin
Richard MacCutchan22-Jan-11 0:02
mveRichard MacCutchan22-Jan-11 0:02 
GeneralRe: Unknown problem with non-english languages Pin
rahul.kulshreshtha22-Jan-11 0:41
rahul.kulshreshtha22-Jan-11 0:41 
GeneralRe: Unknown problem with non-english languages Pin
Richard MacCutchan22-Jan-11 2:07
mveRichard MacCutchan22-Jan-11 2:07 
GeneralRe: Unknown problem with non-english languages Pin
rahul.kulshreshtha22-Jan-11 2:19
rahul.kulshreshtha22-Jan-11 2:19 
GeneralRe: Unknown problem with non-english languages Pin
Richard MacCutchan22-Jan-11 6:24
mveRichard MacCutchan22-Jan-11 6:24 
QuestionException with CFileDialog (MFC) Pin
Le Duc Anh21-Jan-11 14:17
professionalLe Duc Anh21-Jan-11 14:17 
AnswerRe: Exception with CFileDialog (MFC) Pin
Andrew Brock21-Jan-11 15:57
Andrew Brock21-Jan-11 15:57 
GeneralRe: Exception with CFileDialog (MFC) Pin
Le Duc Anh21-Jan-11 17:18
professionalLe Duc Anh21-Jan-11 17:18 
GeneralRe: Exception with CFileDialog (MFC) Pin
Andrew Brock21-Jan-11 17:23
Andrew Brock21-Jan-11 17:23 
GeneralRe: Exception with CFileDialog (MFC) Pin
Le Duc Anh21-Jan-11 17:54
professionalLe Duc Anh21-Jan-11 17:54 

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.