December 19th, 2012 08:01 AM
I recently switched from Visual C++ 6.0 to Visual C++ 2008.
With Visual C++ 6.0, I used a callback method to get available font styles for a given font. I don't think that is working correctly...
December 7th, 2010 08:45 AM
Thanks, I did the manual replace. With some other related changes, I got it to compile.
December 5th, 2010 08:59 AM
I tried:
#define long long __int64
and
typedef __int64 long long
Both produce compiler errors.
December 5th, 2010 06:57 AM
I am trying to compile third party c code in Visual C++ (10 years old).
Long long data type is used extensively (thousands of times).
Example: PrintLongInteger(void *,char *,long long);
I...
August 30th, 2008 05:08 PM
I am using CMapStringToOb. Is it necessary to call InitHashTable(...) before inserting elements into the map? I don't know the size at that point in time.
This question was asked previously on...
February 14th, 2007 01:29 PM
Is impossible for an application created in Visual C++ 6.0 to receive a "Certified for Vista" logo.
If so, what are the reasons?
Is one of them the inability to embed a manifest suitable for...
November 14th, 2006 07:19 AM
I am still struggling with the first problem. You created a string using hex constants. How do I create that string if the code points are variables? In other works, how do I form an escaped hex...
November 14th, 2006 06:31 AM
How do I go the other direction -- from a unicode string to code points?
November 14th, 2006 05:59 AM
Thank you. I have been searching for days on how to do this.
November 13th, 2006 03:38 PM
How do I convert a unicode code point into a UTF-16 encoded string in Visual C++ 6?
I believe there is a .net function called ConvertFromUtf32 which does what I want.
October 13th, 2004 03:48 PM
I want to allocate the heap size in Visual C++ using Project > Settings > Link tab. It seems like it is only possible to allocate the stack size using this screen. There should be a way to add /heap:...
January 13th, 2004 10:54 AM
In using SetDIBits to assign an array of bitmap bits to an bitmap, is the array of bitmap bits automatically destructed when the bitmap is destructed or do both have to be destructed separately?
I...
September 29th, 2003 12:18 PM
I know how to do that. Thanks.
I got this Office XP menu code off CodeProject. I have posted on the forum associated with the code if this approach of excluding calls to the code at runtime will...
September 29th, 2003 08:40 AM
I am getting runtime errors when the application runs on Window 95 machines like "... exe file is linked to missing export USER32.DLL: Track Mouse event".
I believe I can solve this by excluding...
September 29th, 2003 08:11 AM
I want to conditionally compile sections of code if the Windows version is not Windows 95.
Am I correct in assuming that I can't use ::GetVersionEx?
Am I correct that #if (WINVER > 0x400) will...
March 19th, 2003 10:14 AM
Thanks. GetModuleFileName works.
It is odd that when I run the application from the developer environment I get long file names and when I run it by double-clicking on the project file, I get...
March 19th, 2003 07:39 AM
How do I get the directory of the .exe application? It is not necessarily the current working directory because the project file may have been opened by double-clicking? I need to get a path for...
December 16th, 2002 05:13 PM
What descriptions would describe these two character sets -- GB2312_CHARSET and EE_CHARSET?
For example, HANGUL_CHARSET is Korean and THAI_CHARSET is Thai.
November 1st, 2002 05:00 PM
In doing some research, I see that there are localized dlls called MFC LOC DLL. The Microsoft article says that they can be found on the Visual C++ disk under OS\System that came with the purchase.
...