|
DLLs I wrote and compiled a program with VC++ 8.0 Express. Then I tried it on another PC with Win 2k. It said it needed msvcp80.dll. So, I included that. I tried again, and it said it now wants msvcr80.dll. Anyone know what's up with all this? Is there a standard set of DLLs that I should be including with all my V... 26 Jan 2006 02:13
Question about Deprecated Functions If I still make use of functions like strcpy, would the final machine code for that little part be 16-bit? Say strcpy (hello, hello2) mov ax, offser hello ..... if I use cout << hello then mov eax, offset hello Thanks Jack ... 26 Jan 2006 19:05
How to compare two object? hi, I want to compare two objects. The objects type is MS Outlook inspectors. The code is given where two objects of inspectors are created. One object is Active inspector that is obtained directly the other one is get from the collection object. I want to compare which object is same in the collection with ... 23 Jan 2006 12:10
SHGetFileInfo.dwAttributes check we have #define FILE_ATTRIBUTE_READONLY 0x00000001 #define FILE_ATTRIBUTE_HIDDEN 0x00000002 #define FILE_ATTRIBUTE_SYSTEM 0x00000004 #define FILE_ATTRIBUTE_DIRECTORY 0x00000010 #define FILE_ATTRIBUTE_ARCHIVE 0x00000020 #define FILE_ATTRIBUTE_DEVICE 0x00000040 #define FILE_ATTRIBUTE_NORMAL 0x00000080 #define FIL... 14 Jan 2006 20:39
deprecated I keep getting messages like this: ...\..\..\..\..\..\..\gdi\gdi.cpp(257) : warning C4996: 'strcat' was declared deprecated C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(78) : see declaration of 'strcat' Message: 'This function or variable may be unsafe. Consider using strcat_s ... 12 Jan 2006 08:49
LVM_SETVIEW hello, To use LVM_SETVIEW, user must provide a manifest specifying Comclt32.dll version 6.0. Info can be found at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwxp/html/xptheming.asp for a app that "Does Not Use Third Party Extensions" (i guess my case) 1. Link to ComCtl32.lib and call I... 12 Jan 2006 04:02
Problem with wParam Hello, I would like to ask, what is the data type of wParam when used in the following fragment: other code......... case WM_MOUSEWHEEL: if (iDeltaPerLine == 0) break; iAccumDelta += (short) HIWORD (wParam); other code ....... Is it of unsigned long integer >>> 0 - 4,294,96... 8 Jan 2006 22:35
GetFileVersionInfo example Search keywords: GetFileVersionInfo example GetFileVersionInfo example C++ GetFileVersionInfo example Visual C++ GetFileVersionInfo example Visual C++ XP How to use GetFileVersionInfo How to get a file's version under Windows XP ---------------------------------------------------------------- It is based on ano... 5 Jan 2006 10:55
Using custom-aligned template data types as formal parameters The following source was compiled using VS.NET 2003: template <size_t i> struct test_align1 { __declspec(align(16)) struct {} align; }; struct test_align2 { __declspec(align(16)) struct {} align; }; void funcme(test_align1<0> align) {} void funcme2(test_align2 align) {} funcme2 generates an error (... 5 Jan 2006 03:31 |