Either you do your thing in the constructor or after Window is loaded. You need to articulate what you want.
If winter comes is spring far behind? - (PBShelley -Ode to the West Wind)
Either you do your thing in the constructor or after Window is loaded. You need to articulate what you want.
If winter comes is spring far behind? - (PBShelley -Ode to the West Wind)
Thanks. Like all good ideas it looks obvious after the fact.
If winter comes is spring far behind? - (PBShelley -Ode to the West Wind)
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)