Click here to Skip to main content
15,903,012 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
ThatsAlok21-Feb-07 6:04
ThatsAlok21-Feb-07 6:04 
AnswerRe: clicking button programmatically using SendDlgItemMessage() Pin
prasad_som21-Feb-07 17:03
prasad_som21-Feb-07 17:03 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
ThatsAlok21-Feb-07 18:45
ThatsAlok21-Feb-07 18:45 
GeneralRe: clicking button programmatically using SendDlgItemMessage() Pin
Try21-Feb-07 17:25
Try21-Feb-07 17:25 
Questionhtml entity to unicode Pin
micutzu20-Feb-07 21:35
micutzu20-Feb-07 21:35 
AnswerRe: html entity to unicode Pin
Naveen20-Feb-07 22:34
Naveen20-Feb-07 22:34 
GeneralRe: html entity to unicode Pin
micutzu20-Feb-07 22:39
micutzu20-Feb-07 22:39 
GeneralRe: html entity to unicode Pin
Naveen21-Feb-07 1:18
Naveen21-Feb-07 1:18 
I think the below code will work..


wchar_t* ptext = _T("%u03C5%u03B2%u03AD&");
wchar_t* pEntity = new wchar_t[ _tcslen( ptext ) + 1];
_tcscpy( pEntity, ptext );

/// in u r case u can start from here
wchar_t pGreek[50] = {0};
int ncount = _tcslen( pEntity );
int nChar = 0;
wchar_t *pStart = pEntity + 2;
for( int i = 0, j = 0; i< ncount-2; j++, i += 6 )
{
*(pStart + 4) = 0;
*(pStart + 5) = 0;
swscanf( pStart , _T("%x"), &nChar );
pGreek[j] = nChar;
pStart+= 6;

}
AfxMessageBox( pGreek);
delete[] pEntity;


nave

Questionfile find problem Pin
david bagaturia20-Feb-07 21:18
david bagaturia20-Feb-07 21:18 
AnswerRe: file find problem Pin
Cedric Moonen20-Feb-07 21:39
Cedric Moonen20-Feb-07 21:39 
GeneralRe: file find problem Pin
david bagaturia20-Feb-07 21:50
david bagaturia20-Feb-07 21:50 
GeneralRe: file find problem Pin
Cedric Moonen20-Feb-07 21:57
Cedric Moonen20-Feb-07 21:57 
GeneralRe: file find problem Pin
david bagaturia20-Feb-07 22:09
david bagaturia20-Feb-07 22:09 
AnswerRe: file find problem Pin
prasad_som20-Feb-07 22:29
prasad_som20-Feb-07 22:29 
GeneralRe: file find problem Pin
Waldermort20-Feb-07 23:40
Waldermort20-Feb-07 23:40 
GeneralRe: file find problem Pin
benjymous21-Feb-07 1:24
benjymous21-Feb-07 1:24 
GeneralRe: file find problem Pin
david bagaturia21-Feb-07 19:08
david bagaturia21-Feb-07 19:08 
QuestionRe: file find problem Pin
prasad_som20-Feb-07 21:46
prasad_som20-Feb-07 21:46 
AnswerRe: file find problem Pin
david bagaturia20-Feb-07 21:55
david bagaturia20-Feb-07 21:55 
General[Message Deleted] Pin
ddmcr21-Feb-07 0:18
ddmcr21-Feb-07 0:18 
GeneralRe: file find problem Pin
david bagaturia21-Feb-07 3:25
david bagaturia21-Feb-07 3:25 
QuestionCheck Box & ShellExecute Question. Pin
Suresh H20-Feb-07 20:14
Suresh H20-Feb-07 20:14 
AnswerRe: Check Box & ShellExecute Question. Pin
Nibu babu thomas20-Feb-07 20:30
Nibu babu thomas20-Feb-07 20:30 
GeneralRe: Check Box & ShellExecute Question. Pin
Suresh H20-Feb-07 20:52
Suresh H20-Feb-07 20:52 
GeneralRe: Check Box & ShellExecute Question. Pin
Nibu babu thomas20-Feb-07 20:57
Nibu babu thomas20-Feb-07 20:57 

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.