First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
which functions can take over the standard ones in a multi-thread program?
Hi, I hear about poeple say standard library functions are not usable in a multi-thread program. Such as printf....asctime, what mostly people do in order to tackle this problem? I mean to use which other functions are acceptable by C++? Thanks Jack ... 19 Mar 2010 04:55
Locations of Delay loaded DLLs
Hi, I have an MFC application that needs to delay load some DLLs. I've mentioned the names of these DLLs in Linker->Input->Delay loaded DLLs and things work fine, but only if the DLLs reside in the EXEs path. I would like to load the DLLs from any other location, for example the temp path. Is there anythin... 18 Mar 2010 08:11
Creating a 64-bit build configuration
Hi, I need to build a 64-bit application (and cannot use a 32-bit one with WOW64 for certain reasons). What are the configuration options (in Project Settings) that I need to use when building such an application. Basically, how do I create a x64 configuration? TIA, Jy ... 18 Mar 2010 16:40
Windows 7 Phone
So, let me get this straight. Full Silverlight, SQL, Linq & etc. can be programmed for the phone in any .net langauge. All you give up is "potential restraint by higher powers?" ... 16 Mar 2010 19:52
alternative fro boost::regex
What is a good alternative to boost regular expressions? I want to use regular expressions, but don't want to link in boost. Lars ... 16 Mar 2010 10:16
exceptions
What are the alternatives to boost::format? I want to make a function that formats the input in the argument I pass in, but don't want to use boost. Lars ... 16 Mar 2010 07:58
Is this partial template specialization possible?
Hi, Given the following class template: template <typename T1, typename T2> class ClassT { void foo(); } template <typename T1, typename T2> void ClassT::foo<T1, T2>() { [...] } I could specialize foo() method for classes C1 and C2 as: template <> void ClassT::foo<C1, C2>() { [...] } ... 15 Mar 2010 18:11
C2248: cannot access protected member
Hello, Some time ago I asked a question about taking an address of protected member function: "C2248: cannot access protected member" http://groups.google.com/group/microsoft.public.vc.language/browse_frm/thread/a6b6afdca3ea91a2/ Recently I discovered that proposed solution fails to compile with VC++2008 ... 15 Mar 2010 18:11
own stackframe -> prob with exception handling
I've some code which creates its own stackframe and does some kine of context switching (using inline assembler). The code works until the function of the new context throws an exception. Even if I've installed an exception handler (try/catch block) I get an unhandled exception fault (I debugged it with MS VC -... 13 Mar 2010 17:36
Avoiding the Abort/Retry/Ignore dialog on assertion
Hi everyone, I do not want the Abort/Retry/Ignore dialog to be opened by abort() on assertions in a Win32 GUI application. Let's say I have this piece of code: #include <windows.h> #include <cassert> extern "C" int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int... 14 Mar 2010 18:47
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18