Click here to Skip to main content
15,896,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionEnsuring code runs synchronously Pin
ForNow9-Mar-16 4:01
ForNow9-Mar-16 4:01 
AnswerRe: Ensuring code runs synchronously Pin
Richard MacCutchan9-Mar-16 6:21
mveRichard MacCutchan9-Mar-16 6:21 
AnswerRe: Ensuring code runs synchronously Pin
Bram van Kampen9-Mar-16 14:29
Bram van Kampen9-Mar-16 14:29 
AnswerRe: Ensuring code runs synchronously Pin
Bram van Kampen9-Mar-16 15:04
Bram van Kampen9-Mar-16 15:04 
QuestionNon display characters for selection count Pin
ForNow8-Mar-16 19:44
ForNow8-Mar-16 19:44 
AnswerRe: Non display characters for selection count Pin
Richard MacCutchan8-Mar-16 21:45
mveRichard MacCutchan8-Mar-16 21:45 
GeneralRe: Non display characters for selection count Pin
ForNow9-Mar-16 3:55
ForNow9-Mar-16 3:55 
GeneralRe: Non display characters for selection count Pin
David Crow9-Mar-16 4:24
David Crow9-Mar-16 4:24 
Really? I just tested (using VS2008) and it came out as two separate characters. Here's the code I used:

// the control contained the text: David\r\n

void CMyDialog::OnClickedOk()
{
    int len = m_richedit.GetWindowTextLength();
    TRACE(_T("Len = %d\n"), len);

    CString text;
    m_richedit.GetWindowText(text);
    TRACE(_T("Text = %s\n"), text);

    for (int x = 0; x < len; x++)
        TRACE(_T("%#x\n"), text[x]);
}
The resulting output looked like:

Len = 7
Text = David

0x44
0x61
0x76
0x69
0x64
0xd
0xa

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles


GeneralRe: Non display characters for selection count Pin
ForNow9-Mar-16 4:32
ForNow9-Mar-16 4:32 
QuestionRe: Non display characters for selection count Pin
David Crow9-Mar-16 4:49
David Crow9-Mar-16 4:49 
AnswerRe: Non display characters for selection count Pin
ForNow9-Mar-16 4:58
ForNow9-Mar-16 4:58 
QuestionRe: Non display characters for selection count Pin
David Crow9-Mar-16 5:03
David Crow9-Mar-16 5:03 
AnswerRe: Non display characters for selection count Pin
ForNow9-Mar-16 5:20
ForNow9-Mar-16 5:20 
GeneralRe: Non display characters for selection count Pin
David Crow9-Mar-16 5:40
David Crow9-Mar-16 5:40 
GeneralRe: Non display characters for selection count Pin
ForNow9-Mar-16 5:45
ForNow9-Mar-16 5:45 
QuestionRe: Non display characters for selection count Pin
David Crow9-Mar-16 5:53
David Crow9-Mar-16 5:53 
AnswerRe: Non display characters for selection count Pin
ForNow9-Mar-16 6:21
ForNow9-Mar-16 6:21 
GeneralRe: Non display characters for selection count Pin
Richard MacCutchan9-Mar-16 6:18
mveRichard MacCutchan9-Mar-16 6:18 
GeneralRe: Non display characters for selection count Pin
Bram van Kampen9-Mar-16 14:52
Bram van Kampen9-Mar-16 14:52 
GeneralRe: Non display characters for selection count Pin
Richard MacCutchan9-Mar-16 22:11
mveRichard MacCutchan9-Mar-16 22:11 
GeneralRe: Non display characters for selection count Pin
Bram van Kampen9-Mar-16 14:49
Bram van Kampen9-Mar-16 14:49 
GeneralRe: Non display characters for selection count Pin
Richard MacCutchan9-Mar-16 22:11
mveRichard MacCutchan9-Mar-16 22:11 
GeneralRe: Non display characters for selection count Pin
Bram van Kampen10-Mar-16 14:19
Bram van Kampen10-Mar-16 14:19 
QuestionRe: Non display characters for selection count Pin
David Crow10-Mar-16 2:48
David Crow10-Mar-16 2:48 
AnswerRe: Non display characters for selection count Pin
leon de boer15-Mar-16 20:22
leon de boer15-Mar-16 20:22 

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.