August 25th, 2006 05:40 AM
Vague question indeed but typical of the kind you get from Indian sub-continent outsourcing companies.
It make you think they've just been employed from university and told to get CodeGuru members...
September 10th, 2005 06:14 AM
Ok, you don't SW_HIDE or close but the program still terminates. That sounds like an unhandled exception to me. Try running it under the debugger and see if the debugger traps the exception, if not...
September 7th, 2005 05:24 AM
You need to create an MFC Extension dll if you are using MFC or if using the ATL CString implementation you need to try the steps outlined here ...
August 17th, 2005 03:02 AM
Did you re-install Visual Studio?
August 17th, 2005 02:07 AM
The whole idea of taking a diploma in IT is FOR YOU TO LEARN. Your instructor will have already covered what you need for this homework or will at least have given references to books. Pay attention,...
August 4th, 2005 06:33 AM
Thread local storage is implemented by kernel32.dll so you're limited by what the OS can provide.
So you must either upgrade the OS to 2000 or higher or create an alternative to TLS yourself.
August 4th, 2005 06:22 AM
Could you make your problem clearer pls.
April 30th, 2005 02:51 PM
You should be using m_strFilter not your own CString object called strFilter.
April 30th, 2005 02:17 AM
This might help
http://www.geocities.com/SiliconValley/2151/dibs.html
April 28th, 2005 12:24 AM
I suspec this call pDC.CreateCompatibleDC(NULL); is failing. Check the return from this call first.
April 27th, 2005 09:28 AM
So the icons are different as well or just the colours?
Can you show how this bitmap is used when displaying?
April 27th, 2005 12:44 AM
What other modes are you trying to use?, 32 bit or lower modes and can you post an example rubbish bitmap display. It will help to understand what is happening.
April 27th, 2005 12:39 AM
Change your string to be ':' not ":"
cInLine[i][2]==':'
":" is a null terminated string and therefore is 2 bytes long and you can't compare that to a single character. ':' on the other hand IS...
April 15th, 2005 01:21 AM
The /MD switch just supports multithreading. If your program only uses one thread then it's single threaded. I know that someone will tell me that's not necessarily true (shadow GDI threads and other...
March 17th, 2005 09:24 AM
If it's not in the list of services then it's not installed. Debugging it using the IDE is not running the code "as a service". The service must be registered using the -i option as discussed in the...