Click here to Skip to main content
15,895,746 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to Create CObArray made of other CObArrays? Pin
«_Superman_»4-Jun-09 18:24
professional«_Superman_»4-Jun-09 18:24 
GeneralRe: How to Create CObArray made of other CObArrays? Pin
Software20075-Jun-09 2:48
Software20075-Jun-09 2:48 
QuestionHi!GUI and ansi C(by:tuan1111) [modified] Pin
tuan11114-Jun-09 16:05
tuan11114-Jun-09 16:05 
AnswerRe: Hi!GUI and ansi C(by:tuan1111) Pin
Chandrasekharan P4-Jun-09 17:37
Chandrasekharan P4-Jun-09 17:37 
AnswerRe: Hi!GUI and ansi C(by:tuan1111) Pin
Hamid_RT4-Jun-09 19:47
Hamid_RT4-Jun-09 19:47 
AnswerRe: Hi!GUI and ansi C(by:tuan1111) Pin
Cedric Moonen4-Jun-09 20:23
Cedric Moonen4-Jun-09 20:23 
QuestionRe: Hi!GUI and ansi C(by:tuan1111) Pin
CPallini4-Jun-09 21:05
mveCPallini4-Jun-09 21:05 
QuestionIssue with ptr_fun VS2008 Pin
parama_chakra4-Jun-09 14:20
parama_chakra4-Jun-09 14:20 
I posted a feedback issue
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=463503
Essentially code that was working in VC6 listed below does not compile:



const char* trimChars = "\\/|*?'\"<>;:";
std::remove_if(
fileName.begin(),
fileName.end(),
std::bind1st(std::ptr_fun(strchr),trimChars)
);

The only work around I could think of was to wrap strchr inside another function like this:
char const* compare(char const* str, int c)
{
return ::strchr(str,c);
}

Is this a bug in the compiler or am I missing something?


--Joe

If winter comes is spring far behind? - (PBShelley -Ode to the West Wind)

AnswerRe: Issue with ptr_fun VS2008 Pin
Stuart Dootson4-Jun-09 15:11
professionalStuart Dootson4-Jun-09 15:11 
GeneralRe: Issue with ptr_fun VS2008 Pin
parama_chakra4-Jun-09 18:20
parama_chakra4-Jun-09 18:20 
QuestionHow to join .wav and .avi files using VC++ Pin
Nikhil_77774-Jun-09 13:32
Nikhil_77774-Jun-09 13:32 
AnswerRe: How to join .wav and .avi files using VC++ Pin
Chandrasekharan P4-Jun-09 17:47
Chandrasekharan P4-Jun-09 17:47 
QuestionRe: How to join .wav and .avi files using VC++ Pin
Nikhil_77774-Jun-09 18:14
Nikhil_77774-Jun-09 18:14 
AnswerRe: How to join .wav and .avi files using VC++ Pin
Chandrasekharan P4-Jun-09 19:03
Chandrasekharan P4-Jun-09 19:03 
AnswerRe: How to join .wav and .avi files using VC++ Pin
Rajesh R Subramanian4-Jun-09 19:48
professionalRajesh R Subramanian4-Jun-09 19:48 
AnswerRe: How to join .wav and .avi files using VC++ Pin
molesworth4-Jun-09 22:49
molesworth4-Jun-09 22:49 
GeneralRe: How to join .wav and .avi files using VC++ Pin
Nikhil_77775-Jun-09 10:09
Nikhil_77775-Jun-09 10:09 
QuestionInterProcess Communication Pin
Identity Undisclosed4-Jun-09 12:56
Identity Undisclosed4-Jun-09 12:56 
AnswerRe: InterProcess Communication Pin
Garth J Lancaster4-Jun-09 13:28
professionalGarth J Lancaster4-Jun-09 13:28 
GeneralRe: InterProcess Communication Pin
Identity Undisclosed4-Jun-09 13:43
Identity Undisclosed4-Jun-09 13:43 
GeneralRe: InterProcess Communication Pin
Peter Weyzen4-Jun-09 20:51
Peter Weyzen4-Jun-09 20:51 
AnswerRe: InterProcess Communication Pin
Stuart Dootson4-Jun-09 14:54
professionalStuart Dootson4-Jun-09 14:54 
GeneralRe: InterProcess Communication Pin
Michael Dunn4-Jun-09 17:03
sitebuilderMichael Dunn4-Jun-09 17:03 
QuestionVisual C++ and LPCWSTR Pin
felixlover4ever4-Jun-09 11:11
felixlover4ever4-Jun-09 11:11 
AnswerRe: Visual C++ and LPCWSTR Pin
Baltoro4-Jun-09 12:45
Baltoro4-Jun-09 12:45 

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.