Click here to Skip to main content
15,880,891 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: RemoveDirectoryW() Pin
Dominik Reichl21-Mar-09 2:13
Dominik Reichl21-Mar-09 2:13 
GeneralRe: RemoveDirectoryW() [modified] Pin
p_196021-Mar-09 3:23
p_196021-Mar-09 3:23 
QuestionGetEnvironmentvariables Pin
siva45520-Mar-09 23:48
siva45520-Mar-09 23:48 
AnswerRe: GetEnvironmentvariables Pin
Stuart Dootson21-Mar-09 0:18
professionalStuart Dootson21-Mar-09 0:18 
GeneralRe: GetEnvironmentvariables Pin
p_196021-Mar-09 2:10
p_196021-Mar-09 2:10 
GeneralRe: GetEnvironmentvariables Pin
JBAK_CP21-Mar-09 4:56
JBAK_CP21-Mar-09 4:56 
GeneralRe: GetEnvironmentvariables Pin
Stuart Dootson21-Mar-09 12:24
professionalStuart Dootson21-Mar-09 12:24 
GeneralUnicode conversion problem(slovak characters) Pin
Vineet Kumar20-Mar-09 23:40
Vineet Kumar20-Mar-09 23:40 
Hi,

I am writing an application, which required unicode conversion, but I am facing some problem with SLOVAK characters.

For example, I face the problem for character ď , whose value is ď

for conversion, I did the following:

string strNum = "271";
wchar_t lpszUcode[1];
lpszUcode[0] = atoi(strNum.c_str());

int nCodePage = 1252;

int iBuffLen = WideCharToMultiByte(nCodePage, NULL, lpszUcode, 1, NULL, 0, NULL, NULL);
char* buffer = new char[iBuffLen + 1];
WideCharToMultiByte(nCodePage, NULL, lpszUcode, 1, buffer, iBuffLen, NULL, NULL);
buffer[iBuffLen] = 0;

string strRes = buffer;

It returns with the value d rather than ď .

can somene pl. sugeeset the solution for this.

Regards


Tough Time Never last, but Tough People do.
GeneralRe: Unicode conversion problem(slovak characters) Pin
Stuart Dootson21-Mar-09 0:20
professionalStuart Dootson21-Mar-09 0:20 
QuestionDetails about File and Directory choosers(Very urgent.............................) Pin
AnithaSubramani20-Mar-09 23:35
AnithaSubramani20-Mar-09 23:35 
AnswerRe: Details about File and Directory choosers(Very urgent.............................) Pin
CPallini21-Mar-09 0:58
mveCPallini21-Mar-09 0:58 
QuestionRegQueryValueExW() Pin
p_196020-Mar-09 22:52
p_196020-Mar-09 22:52 
AnswerRe: RegQueryValueExW() Pin
Rajesh R Subramanian20-Mar-09 23:39
professionalRajesh R Subramanian20-Mar-09 23:39 
GeneralOT-Nice to see you again in the forum. Pin
CPallini21-Mar-09 0:27
mveCPallini21-Mar-09 0:27 
GeneralRe: OT-Nice to see you again in the forum. Pin
Rajesh R Subramanian21-Mar-09 4:31
professionalRajesh R Subramanian21-Mar-09 4:31 
AnswerRe: RegQueryValueExW() Pin
sashoalm21-Mar-09 0:34
sashoalm21-Mar-09 0:34 
QuestionThreading Pin
MsmVc20-Mar-09 20:51
MsmVc20-Mar-09 20:51 
AnswerRe: Threading Pin
Rajesh R Subramanian20-Mar-09 23:37
professionalRajesh R Subramanian20-Mar-09 23:37 
GeneralRe: Threading Pin
MsmVc21-Mar-09 2:50
MsmVc21-Mar-09 2:50 
GeneralRe: Threading Pin
Rajesh R Subramanian21-Mar-09 4:10
professionalRajesh R Subramanian21-Mar-09 4:10 
QuestionURLDownloadtoFile() Pin
p_196020-Mar-09 20:35
p_196020-Mar-09 20:35 
AnswerRe: URLDownloadtoFile() Pin
sashoalm20-Mar-09 21:26
sashoalm20-Mar-09 21:26 
Generalclass DownloadUrl Pin
sashoalm20-Mar-09 21:27
sashoalm20-Mar-09 21:27 
GeneralHow to use Pin
sashoalm20-Mar-09 21:35
sashoalm20-Mar-09 21:35 
GeneralRe: How to use Pin
p_196020-Mar-09 21:39
p_196020-Mar-09 21:39 

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.