Click here to Skip to main content
15,904,877 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Update WM_PAINT and Memory DC Pin
JohnCz8-Sep-10 18:24
JohnCz8-Sep-10 18:24 
QuestionHow to get character count Pin
raju_shiva25-Aug-10 22:25
raju_shiva25-Aug-10 22:25 
AnswerRe: How to get character count Pin
HTT9025-Aug-10 22:38
HTT9025-Aug-10 22:38 
AnswerRe: How to get character count Pin
Sauro Viti25-Aug-10 22:48
professionalSauro Viti25-Aug-10 22:48 
AnswerRe: How to get character count Pin
Richard MacCutchan25-Aug-10 23:04
mveRichard MacCutchan25-Aug-10 23:04 
GeneralRe: How to get character count Pin
Sauro Viti25-Aug-10 23:17
professionalSauro Viti25-Aug-10 23:17 
GeneralRe: How to get character count Pin
Richard MacCutchan26-Aug-10 1:29
mveRichard MacCutchan26-Aug-10 1:29 
AnswerRe: How to get character count [modified] Pin
Niklas L25-Aug-10 23:09
Niklas L25-Aug-10 23:09 
std::count_if is another method.

Something like
bool is_comma(char c)
{
    return c == ',';
}

std::string s = "1,2,3,4";

int count = std::count_if(s.begin(), s.end(), is_comma);


Edit for clarification: This algorithm can of course be applied to a CString as well using the GetBuffer() member.
home
modified on Thursday, August 26, 2010 5:31 AM

GeneralRe: How to get character count Pin
CPallini26-Aug-10 0:38
mveCPallini26-Aug-10 0:38 
GeneralRe: How to get character count Pin
Niklas L26-Aug-10 0:52
Niklas L26-Aug-10 0:52 
AnswerRe: How to get character count Pin
CPallini26-Aug-10 0:18
mveCPallini26-Aug-10 0:18 
QuestionRe: How to get character count Pin
David Crow26-Aug-10 3:48
David Crow26-Aug-10 3:48 
AnswerRe: How to get character count Pin
«_Superman_»26-Aug-10 17:52
professional«_Superman_»26-Aug-10 17:52 
QuestionHow can print Dialog Box Screen? Pin
Le@rner25-Aug-10 21:16
Le@rner25-Aug-10 21:16 
AnswerRe: How can print Dialog Box Screen? PinPopular
Nuri Ismail25-Aug-10 22:13
Nuri Ismail25-Aug-10 22:13 
GeneralRe: How can print Dialog Box Screen? Pin
Le@rner25-Aug-10 22:31
Le@rner25-Aug-10 22:31 
GeneralRe: How can print Dialog Box Screen? Pin
Nuri Ismail25-Aug-10 23:28
Nuri Ismail25-Aug-10 23:28 
GeneralRe: How can print Dialog Box Screen? Pin
Richard MacCutchan25-Aug-10 23:00
mveRichard MacCutchan25-Aug-10 23:00 
GeneralRe: How can print Dialog Box Screen? Pin
Nuri Ismail25-Aug-10 23:28
Nuri Ismail25-Aug-10 23:28 
GeneralRe: How can print Dialog Box Screen? Pin
Le@rner26-Aug-10 0:45
Le@rner26-Aug-10 0:45 
GeneralRe: How can print Dialog Box Screen? Pin
Nuri Ismail26-Aug-10 2:01
Nuri Ismail26-Aug-10 2:01 
GeneralRe: How can print Dialog Box Screen? Pin
Le@rner26-Aug-10 2:08
Le@rner26-Aug-10 2:08 
AnswerRe: How can print Dialog Box Screen? Pin
Nuri Ismail26-Aug-10 2:23
Nuri Ismail26-Aug-10 2:23 
GeneralRe: How can print Dialog Box Screen? Pin
Le@rner26-Aug-10 2:42
Le@rner26-Aug-10 2:42 
GeneralRe: How can print Dialog Box Screen? Pin
Nuri Ismail26-Aug-10 2:47
Nuri Ismail26-Aug-10 2:47 

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.