Click here to Skip to main content
15,922,533 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Thread termination in ATL COM Pin
Richard John17-Dec-03 10:40
Richard John17-Dec-03 10:40 
QuestionIs WTL UI updating broken on Pocket PC? Pin
Johann Gerell15-Dec-03 13:12
Johann Gerell15-Dec-03 13:12 
AnswerRe: Is WTL UI updating broken on Pocket PC? Pin
Jörgen Sigvardsson16-Dec-03 8:44
Jörgen Sigvardsson16-Dec-03 8:44 
AnswerRe: Is WTL UI updating broken on Pocket PC? Pin
Johann Gerell16-Dec-03 22:52
Johann Gerell16-Dec-03 22:52 
Generalstd::string question Pin
User 988515-Dec-03 5:32
User 988515-Dec-03 5:32 
GeneralRe: std::string question Pin
John M. Drescher15-Dec-03 5:51
John M. Drescher15-Dec-03 5:51 
GeneralRe: std::string question Pin
Igor Vigdorchik18-Dec-03 12:35
Igor Vigdorchik18-Dec-03 12:35 
GeneralRe: std::string question Pin
Kosenko Kolya19-Dec-03 0:49
Kosenko Kolya19-Dec-03 0:49 
// Copyright(c) 2002 by Kolya Kosenko

void replace_string(string &str, const char *search, const char *repl_value)
{
string::size_type size = char_traits<char>().length(search);
string::size_type repl_value_size = char_traits<char>().length(repl_value);
string::size_type replace_pos = 0;
if(size) {
do {
replace_pos = str.find(search, replace_pos);
if(replace_pos == string::npos) break;
str.replace(replace_pos, size, repl_value);
replace_pos += repl_value_size;
}while(true);
}
}
GeneralThe button did not work.Please help me Pin
freehawk12-Dec-03 22:59
freehawk12-Dec-03 22:59 
GeneralRe: The button did not work.Please help me Pin
Igor Vigdorchik18-Dec-03 16:36
Igor Vigdorchik18-Dec-03 16:36 
GeneralRe: The button did not work.Please help me Pin
freehawk18-Dec-03 16:51
freehawk18-Dec-03 16:51 
QuestionHow to add a MFC dialog in a WTL project? Pin
freehawk12-Dec-03 21:25
freehawk12-Dec-03 21:25 
AnswerRe: How to add a MFC dialog in a WTL project? Pin
Igor Vigdorchik18-Dec-03 16:40
Igor Vigdorchik18-Dec-03 16:40 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
freehawk18-Dec-03 16:53
freehawk18-Dec-03 16:53 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
freehawk18-Jan-04 15:04
freehawk18-Jan-04 15:04 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
Igor Vigdorchik18-Jan-04 16:13
Igor Vigdorchik18-Jan-04 16:13 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
freehawk18-Jan-04 16:54
freehawk18-Jan-04 16:54 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
Igor Vigdorchik18-Jan-04 18:09
Igor Vigdorchik18-Jan-04 18:09 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
freehawk18-Jan-04 18:29
freehawk18-Jan-04 18:29 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
Igor Vigdorchik18-Jan-04 18:47
Igor Vigdorchik18-Jan-04 18:47 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
freehawk18-Jan-04 19:05
freehawk18-Jan-04 19:05 
GeneralRe: How to add a MFC dialog in a WTL project? Pin
Igor Vigdorchik19-Jan-04 5:13
Igor Vigdorchik19-Jan-04 5:13 
GeneralSTL list sort() limit Pin
GMoss11-Dec-03 3:12
GMoss11-Dec-03 3:12 
GeneralRe: STL list sort() limit Pin
jbarton11-Dec-03 5:40
jbarton11-Dec-03 5:40 
GeneralRe: STL list sort() limit Pin
ZoogieZork11-Dec-03 8:26
ZoogieZork11-Dec-03 8:26 

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.