User David L Morris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:12:18Z http://stackoverflow.com/feeds/user/3137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/89607/what-is-a-privileged-instruction 3 What is a Privileged instruction? David L Morris 2008-09-18T02:56:25Z 2009-11-02T12:32:25Z <p>I have added some code which compiles cleanly and have just received this Windows error:</p> <pre> --------------------------- (MonTel Administrator) 2.12.7: MtAdmin.exe - Application Error --------------------------- The exception Privileged instruction. (0xc0000096) occurred in the application at location 0x00486752. </pre> <p>I am about to go on a bug hunt, and I am expecting it to be something silly that I have done which just happens to produce this message. The code compiles cleanly with no errors or warnings. The size of the exe has grown to 1,454,132 bytes, and includes links to ODCS.lib, but is otherwise pure 'c' to the Win32 API, with DEBUG on (running on a P4 on Win2K).</p> http://stackoverflow.com/questions/1189815/how-can-i-monitor-status-changes-of-windows-services-under-windows-xp/1431116#1431116 0 Answer by David L Morris for How can I monitor status changes of windows services under windows xp? David L Morris 2009-09-16T05:30:35Z 2009-09-16T05:30:35Z <p>You will need to do it by polling. Place the code in a separate thread and send it to sleep for as long as reasonable. Say every second, perhaps even 5 seconds to minimize system performance.</p> <p>As a 'c' example for a single service:</p> <p>// various handles and strings plus... SERVICE_STATUS ssStatus; ...</p> <pre><code> schSCManager = OpenSCManager( ServiceComputerNameStr, NULL, SC_MANAGER_ALL_ACCESS ); if ( schSCManager == NULL ) { // ... error stuff goto cleanup; } scphService = OpenService( schSCManager, ServiceNameStr, // SERVICE_QUERY_STATUS ); SERVICE_ALL_ACCESS ); if ( scphService == NULL ) { // ... error stuff goto cleanup; } if ( !QueryServiceStatus(scphService, ssStatus) ) { // ... error stuff goto cleanup; } </code></pre> <p>The result you want will be in the ssStatus.dwCurrentState.</p> http://stackoverflow.com/questions/173241/what-library-should-be-included-to-use-transparentblt 0 What library should be included to use TransparentBlt? David L Morris 2008-10-06T05:05:57Z 2009-07-29T19:58:18Z <p>What library should be included to use TransparentBlt?</p> <p>This is VC98 (Visual Studio 6) linking to the Gdi32.lib. (Other GDI functions such as BitBlt link as expected), and the compilers compiles with out error or warning.</p> <p>Even though the Gdi32.lib is included, yet the linker returns this error:</p> <pre> mtcombo.obj : error LNK2001: unresolved external symbol __imp__TransparentBlt@44 C:\Work\Montel\Targ2_12\guitest.exe : fatal error LNK1120: 1 unresolved externals </pre> <p>What am I missing?</p> http://stackoverflow.com/questions/881685/stack-or-not/881702#881702 0 Answer by David L Morris for Stack or Not? David L Morris 2009-05-19T09:06:33Z 2009-05-19T09:06:33Z <p>It might look like an ADT, but it just sounds like an array.</p> http://stackoverflow.com/questions/866692/if-you-add-extra-data-space-to-a-dialogbox-class-be-accessed-by-getwindowlongptr 0 If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space? David L Morris 2009-05-15T01:51:48Z 2009-05-15T05:54:36Z <p>When creating a window class for use with a DialogBox you need to add DLGWINDOWEXTRA to cbWndExtra. If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space?</p> <p>(I'll confess that I think I know the answer, and that way the code doesn't break. But, I want to make sure my reasons tally with the collective wisdom.)</p> <p>The major reason why Dialogs are being used with their own class (rather than the default) is to allow each class of Dialog to have its own Icon. Two separate items of extra data are also attached to each window.</p> <pre><code>... wndclass.cbWndExtra = DLGWINDOWEXTRA+EXTRASPACE; wndclass.lpfnWndProc = (WNDPROC) DefDlgProc; wndclass.hIcon = LoadIcon(hInstance, "ICON_MAIN"); wndclass.lpszClassName = WND_CLASS_VLIST_POPUP; wndclass.hIconSm = LoadImage(hInstance, "ICON_MAIN", IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR); ... </code></pre> <p>Late edit (removed the incorrect GWLP_USERDATA and replaced with 0 ):</p> <p>Effectivly the question is:</p> <pre><code>GetWindowLongPtr(hWnd, 0 + DLGWINDOWEXTRA + SOMETHING_IN_EXTRASPACE); </code></pre> <p>or</p> <pre><code>GetWindowLongPtr(hWnd, 0 + SOMETHING_IN_EXTRASPACE); </code></pre> <p>?</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service/796377#796377 0 Answer by David L Morris for How does one map network drive from windows service? David L Morris 2009-04-28T05:47:36Z 2009-04-28T05:47:36Z <p>There are two issues.</p> <p>1) Mappings are only in use for the user session, which means that effectively you can't used a mapped drive for a Service. You would need to use the UNC path.</p> <p>2) The second issue is that a service (using the local system account) does not have access to the network, or more specifically, to the resource required. To resolve this, you would need to, either: Give the 'computer' on which the service is running specific access to the folder, or, set up the service to use a network (DOMAIN) account that has access to the resource.</p> http://stackoverflow.com/questions/759532/what-do-you-say-to-express-the-first-succesful-running-of-a-program 4 What do you say to express the first succesful running of a program? David L Morris 2009-04-17T08:30:35Z 2009-04-20T00:24:52Z <p>Yesterday, I had a moment of excitement when my LDAP client (pure C Win32) module successful retrieved data from Active Directory for the very first time.</p> <p>It was more than a smoke test -- I had all ready run a few of those, and it was well less than even feature complete code. Some data was mangled - so it wasn't even code I would show someone else.</p> <p>But it ran! It worked! (mostly) And now, I just have to massage it into shape. Saying "First data" sounds lame. </p> <p>An astronomer might refer to 'First light'. A shipbuilder might 'launch'. An ancient Greek philosopher might have had a bathtub moment.</p> <p>Is there such an expression for coding? What would you say?</p> <blockquote> Possible duplicate of: <p><a href="http://stackoverflow.com/questions/183469/how-do-you-reward-yourself-when-youve-overcome-a-monster-task">http://stackoverflow.com/questions/183469/how-do-you-reward-yourself-when-youve-overcome-a-monster-task</a><br /> <a href="http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem">http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem</a></p> </blockquote> http://stackoverflow.com/questions/605285/what-are-some-of-the-methods-that-can-be-used-to-avoid-a-page-being-cached-by-the/605333#605333 1 Answer by David L Morris for What are some of the methods that can be used to avoid a page being cached by the browser? David L Morris 2009-03-03T06:25:57Z 2009-03-03T06:25:57Z <p>Set-Cookie: PHPSESSID=[...]; path=/ </p> <p>Is it possible that they have a some sort of cookie control running?</p> <p>If so PHP can be set to propagate a session ID through the URL.</p> http://stackoverflow.com/questions/47206/how-many-rows-should-be-in-the-main-buffer-of-a-virtual-listview-control 1 How many rows should be in the (main) buffer of a virtual Listview control? David L Morris 2008-09-06T02:39:33Z 2009-02-03T01:27:31Z <p>How many rows should be in the (main) buffer of a virtual Listview control?</p> <p>I am witting an application in pure 'c' to the Win32 API. There is an ODBC connection to a database which will retrieve the items (actually rows). </p> <p>The MSDN sample code implies a fixed size buffer of 30 for the end cache (Which would almost certainly not be optimal). I think the end cache and the main cache should be the same size.</p> <p>My thinking is that the buffer should be more than the maximum number of items that could be displayed by the list view at one time. I guess this could be re-calculated each time the Listivew was resized?</p> <p>Or, is it just better to go with a large fixed value. If so what is that value?</p> http://stackoverflow.com/questions/47206/how-many-rows-should-be-in-the-main-buffer-of-a-virtual-listview-control/505727#505727 0 Answer by David L Morris for How many rows should be in the (main) buffer of a virtual Listview control? David L Morris 2009-02-03T01:27:31Z 2009-02-03T01:27:31Z <p>The answer would seem to be:</p> <p>Start with some amount, in this case a screen full (I add an extra row in case the next is partially uncovered), and then every time the screen is scrolled, double the buffer size (up to the point before you run out of memory).</p> http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2 4 Which compiles to faster code: "n * 3" or "n+(n*2)"? David L Morris 2008-09-10T10:44:33Z 2008-11-20T01:15:05Z <p>Which compiles to faster code: "ans = n * 3" or "ans = n+(n*2)"?</p> <p>Assuming that n is either an int or a long, and it is is running on a modern Win32 Intel box.</p> <p>Would this be different if there was some dereferencing involved, that is, which of these would be faster?</p> <pre> long a; long *pn; long ans; ... *pn = some_number; ans = *pn * 3; </pre> <p>Or</p> <pre> ans = *pn+(*pn*2); </pre> <p>Or, is it something one need not worry about as optimizing compilers are likely to account for this in any case?</p> http://stackoverflow.com/questions/252575/functions-in-c/252584#252584 1 Answer by David L Morris for Functions in C David L Morris 2008-10-31T04:18:52Z 2008-10-31T04:18:52Z <p>Yes. An example: </p> <p>Before code...</p> <pre> typedef int ( _stdcall *FilterTypeTranslatorType ) ( int TypeOfImportRecord, PMAType *PMA ); FilterTypeTranslatorType FilterTypeTranslator = {NULL}; </pre> <p>Now in the code...</p> <pre> PMAType *PMA; HANDLE hFilterDll; // assume DLL loaded // Now find the address... ... FilterTypeTranslator[TheGroup] = ( FilterTypeTranslatorType ) GetProcAddress( hFilterDll, "FilterTypeTranslator" ); ... // now call it FilterTypeTranslator(1,PMA); ... </pre> http://stackoverflow.com/questions/239866/how-to-enable-buttons-when-scroll-bar-hits-bottom-with-win32/242060#242060 0 Answer by David L Morris for How to enable buttons when scroll bar hits bottom with Win32? David L Morris 2008-10-28T02:32:09Z 2008-10-28T02:32:09Z <p>Why not use the EM_GETTHUMB message. (Assuming Rich Edit 2.0 or later).</p> <p>If you are lucky this bottom position will match EM_GETLINECOUNT.</p> http://stackoverflow.com/questions/224043/timer-in-a-win32-service/229543#229543 1 Answer by David L Morris for Timer in a win32 service David L Morris 2008-10-23T12:30:55Z 2008-10-23T12:30:55Z <p>In one of your comments you said that "...the service is processing stuff in other threads, I just need to check the status of a few files every second."</p> <p>Polling is not an optimal way of checking file status, and will adversely affect system performance. While there are (sometimes) problems doing this over networks, you should check out <a href="http://msdn.microsoft.com/en-us/library/aa364417" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa364417</a>(VS.85).aspx or <a href="http://msdn.microsoft.com/en-us/library/aa365261" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa365261</a>(VS.85).aspx for how to do it and <a href="http://blogs.msdn.com/oldnewthing/archive/2006/01/24/516808.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/01/24/516808.aspx</a> for why you should.</p> http://stackoverflow.com/questions/217141/whats-a-good-language-to-learn-to-program-windows-applications/217334#217334 0 Answer by David L Morris for Whats a good language to learn to program Windows applications? David L Morris 2008-10-20T01:55:37Z 2008-10-20T01:55:37Z <p>This won't be popular. But if you are doing this as a learning exercise, start with 'C'. There are two steep learning curves. Pointers (and 'c'), and the Win32 API.</p> <p>BUT, you will get a much better appreciation of what is going on at the base level, and this will stand you in good stead for any other windows development language or framework.</p> <p>'C' to the Win32 API has the added advantage of producing really fast and, if done well, robust code.</p> <p>The classic Petzold book would be a good place to start...</p> http://stackoverflow.com/questions/164751/how-to-avoid-flicker-while-handling-wmerasebkgnd-in-windows-dialog/216223#216223 3 Answer by David L Morris for How to avoid flicker while handling WM_ERASEBKGND in Windows dialog David L Morris 2008-10-19T09:47:47Z 2008-10-19T09:47:47Z <p>Assuming that "FillSolidRect" is the erase of your background then return TRUE from the WM_ERASEBKGND.</p> <p>To do the double buffering that you are almost doing in your code fragment, you will need to use CreateCompatibleBitmap and select that into your memDC.</p> http://stackoverflow.com/questions/215988/determine-windows-system-wide-font/216111#216111 2 Answer by David L Morris for Determine windows system wide font David L Morris 2008-10-19T06:30:37Z 2008-10-19T06:40:02Z <p>GetSysColor(COLOR_MENUTEXT) gives you the menu font colour.</p> <p>SystemParametersInfo Will allow you to recover some font information, likewise GetStockObject for drawing on the device context.</p> <p>But the system font is (probably) either Tahoma (on XP/W2K) or MS Sans Serif depending on how you set up your Dialog.</p> <p>See <a href="http://blogs.msdn.com/oldnewthing/archive/2005/02/04/366987.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2005/02/04/366987.aspx</a> for more.</p> http://stackoverflow.com/questions/204334/how-to-manipulate-dlgtemplate-programmatically/206952#206952 2 Answer by David L Morris for How to manipulate DLGTEMPLATE programmatically? David L Morris 2008-10-16T00:00:12Z 2008-10-16T00:00:12Z <p>There is a file out there somewhere (which I think originated at Microsoft but I am not completely sure) called RESFMT.ZIP which explains this with some code examples. Raymond Chen also does some excellent explanations of this on his blog. Note that the format of DIALOGEX and DIALOG controls are different.</p> <p>As noted in some other answers you would need to create the structure again from the start. This isn't all bad as you already have the basic information. Adding the controls is where is gets hard.</p> <p>Basically, allocate a largish block of memory into a WORD *lpIn. Then add the structure up on top of that. adding the basic information for the DIALOG (see DLGTEMPLATE) and the controls is pretty obvious as the information is there in MSDN. </p> <p>The two biggest problems you will encounter are: Making sure that the various part start on an alignment boundary, and interpreting the values of DIALOG controls, especially when to add a just a string or, a string or ordinal. Each control needs to start on an even boundary.</p> <p>For the first (borrowed from somewhere I think RESFMT.ZIP):</p> WORD *AlignDwordPtr (WORD *lpIn) { ULONG ul; ul = (ULONG) lpIn; ul +=3; ul >>=2; ul <p>What I did was build a series of functions like this one following that allowed me to assemble DIALOGS in memory. (My need was so I could have some common code that didn't need an associated RC file for some very basic messages).</p> <p>Here is an example...</p> <pre> WORD *AddStringOrOrdinalToWordMem( WORD *lpw, char *sz_Or_Ord ) { LPWSTR lpwsz; int BufferSize; if (sz_Or_Ord == NULL) { *lpw++ = 0; } else { if (HIWORD(sz_Or_Ord) == 0) //MAKEINTRESOURCE macro { *lpw++ = 0xFFFF; *lpw++ = LOWORD(sz_Or_Ord); } else { if (strlen(sz_Or_Ord)) { lpwsz = ( LPWSTR ) lpw; BufferSize = MultiByteToWideChar( CP_ACP, 0, sz_Or_Ord, -1, lpwsz, 0 ); MultiByteToWideChar( CP_ACP, 0, sz_Or_Ord, -1, lpwsz, BufferSize ); lpw = lpw + BufferSize; } else { *lpw++ = 0; } } } return( lpw ); } </pre> <p>The header file to the complete module included these functions:</p> <pre> WORD *AddControlToDialogTemplateEx(MTDialogTemplateType *dlgtmp, char *Title, WORD Id, char *WinClass, DWORD Style, short x, short y, short cx, short cy, DWORD ExStyle, int HelpID); int DestroyDlgTemplateEx(MTDialogTemplateType *dlgtmp); MTDialogTemplateType *CreateDlgTemplateEx( char *Name, // We use name just for reference, so it can be NULL short x, short y, short cx, short cy, DWORD ExtendedStyle, DWORD Style, char *Menu, char *WinClass, char *Caption, char *FontTypeFace, int FontSize, int FontWeigth, int FontItalic, int Charset, int HelpID, int NumberOfControls); </pre> <p>Which allowed me to assemble whole dialogs easily from code.</p> http://stackoverflow.com/questions/195842/capture-which-step-of-an-animated-system-cursor-is-being-shown-on-windows/196879#196879 0 Answer by David L Morris for Capture which step of an animated system cursor is being shown on Windows David L Morris 2008-10-13T06:46:01Z 2008-10-13T06:46:01Z <p>I suspect you are missing a step.</p> <p>You need to create a bitmap to select into your device context otherwise your bit map is just a single pixel. </p> <p>See CreateCompatibleBitmap in the MSDN documentation:</p> <pre> HBITMAP CreateCompatibleBitmap( HDC hdc, // handle to DC int nWidth, // width of bitmap, in pixels int nHeight // height of bitmap, in pixels ); </pre> <p>With DrawIconEx the UINT istepIfAniCur parameter allows you to choose which frame to draw if it is an animated cursor.</p> <p>It says it there in your comments : </p> <pre> 0, // step of animated cursor </pre> http://stackoverflow.com/questions/190667/need-only-some-rows-in-a-clistctrl-control-to-have-check-boxes/190684#190684 0 Answer by David L Morris for Need only some rows in a CListCtrl control to have check boxes David L Morris 2008-10-10T10:03:05Z 2008-10-10T10:03:05Z <p>Yes it is. What you would need to do is to create bitmaps of the check boxes and included those in the call back. One of your bit maps would be blank. </p> <p>Alternatively, you could do some owner drawing and call the DrawFrameControl function.</p> <p>You could also add code to test for mouse clicks and respond accordingly. </p> http://stackoverflow.com/questions/152447/is-there-a-sql-script-that-i-can-use-to-determine-the-progress-of-a-sql-server-ba/152496#152496 0 Answer by David L Morris for Is there a SQL script that I can use to determine the progress of a SQL Server backup or restore process? David L Morris 2008-09-30T10:14:06Z 2008-09-30T10:14:06Z <p>Use STATS in the BACKUP command if it is just a script.</p> <p>Inside code it is a bit more complicated. In ODBC for example, you set SQL_ATTR_ASYNC_ENABLE and then look for SQL_STILL_EXECUTING return code, and do some repeated calls of SQLExecDirect until you get a SQL_SUCCESS (or eqiv).</p> http://stackoverflow.com/questions/99468/retrieving-multiple-rows-into-a-listview-control-from-an-odbc-source-works-well-f 1 Retrieving multiple rows into a listview control from an ODBC source works well for simple SELECTs with a statement attribute of SQL_SCROLLABLE. How do I do this with a UNION query? David L Morris 2008-09-19T03:56:59Z 2008-09-28T16:53:34Z <p>I am retrieving multiple rows into a listview control from an ODBC source. For simple SELECTs it seems to work well with a statement attribute of SQL_SCROLLABLE. How do I do this with a UNION query (with two selects)?</p> <p>The most likely server will be MS SQL Server (probably 2005). The code is 'c' for the Win32 API.</p> <p>This code sets (what I think is) a server side cursor which feeds data into the ODBC driver that roughly corresponds with the positional fetches of SQLFetchScroll, which is turn feeds the cache for the listview. (Sometimes using SQL_FETCH_FIRST or SQL_FETCH_LAST as well as):</p> <pre> SQLSetStmtAttr(hstmt1Fetch, SQL_ATTR_CURSOR_SCROLLABLE, (SQLPOINTER)SQL_SCROLLABLE, SQL_IS_INTEGER); SQLSetStmtAttr(hstmt1Fetch, SQL_ATTR_CURSOR_SENSITIVITY, (SQLPOINTER)SQL_INSENSITIVE, SQL_IS_INTEGER); ... retcode = SQLGetStmtAttr( hstmt1Fetch, SQL_ATTR_ROW_NUMBER, &CurrentRowNumber, SQL_IS_UINTEGER, NULL); ... retcode = SQLFetchScroll(hstmt1Fetch, SQL_FETCH_ABSOLUTE, Position); </pre> <p>(The above is is a fragment from working code for a single SELECT).</p> <p>Is this the best way to do it? Given that I need to retrieve the last row to get the number of rows and populate the end buffer is there a better way of doing it? (Can I use forward only scrolling?)</p> <p>Assuming yes to the above, how do I achieve the same result with a UNION query?</p> <p>LATE EDIT: The problem with the union query being that effectively it forces forward only scrolling which breaks SQLFetchScroll(hstmt1Fetch, SQL_FETCH_ABSOLUTE, Position). The answer is I suspect: "you can't". And it really means redesigning the DB to included either a view or a single table to replace the UNION. But I'll leave the question open in case I have missed something.</p> http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over/144937#144937 0 Answer by David L Morris for When is it good (if ever) to scrap production code and start over? David L Morris 2008-09-28T01:21:41Z 2008-09-28T01:21:41Z <p>I think there are a number of issues here that depend largely on where you are at.</p> <p>Is the software working well from a customer perspective? (If yes be very careful about changes). I would think there would be little point re-witting unless you were expanding the feature set if the system was working. And are you planning to expand the features and customer base of the software? If so then you have much more reason to change.</p> <p>As much as anything just trying to understand some else's code even if well written can be difficult, when badly written I would imagine almost impossible. What you describe sounds like something that would be very difficult to expand.</p> http://stackoverflow.com/questions/143032/does-vb6-have-a-pragma-pack-equivalent/143066#143066 1 Answer by David L Morris for Does VB6 have a #pragma pack equivalent? David L Morris 2008-09-27T05:37:41Z 2008-09-27T05:37:41Z <p>There is not any way to force VB6 to not pad UDT's, similar to the #pragma pack directive available in many C/C++ compilers, but you can do it the other way around.</p> <p>According to Q194609 Visual Basic uses 4 bytes alignment and Visual C++ uses 8 bytes by default.</p> <p>When using VB6 to call out to a C DLL, I used the MS "pshpack4.h" header files to handle the alignment because various compilers do this in different ways, as shown in this (rather edited) example:</p> <pre> // this is in a header file called vbstruct.h ... # define VBSTRING char # define VBFIXEDSTRING char # define VBDATE double # define VBSINGLE float # ifdef _WIN32 # define VBLONG long # define VBINT short # else // and this was for 16bit code not 64bit!!!! # define VBLONG long # define VBINT int # endif ... # include "pshpack4.h" ... typedef struct VbComputerNameStruct { VBLONG sName; VBSTRING ComputerName[VB_COMPUTERNAME_LENGTH]; } VbComputerNameType; typedef struct VbNetwareLoginInfoStruct { VBLONG ObjectId; VBINT ObjectType; VBSTRING ObjectName[48]; } VbNetwareLoginInfoType; ... # include "poppack.h" </pre> http://stackoverflow.com/questions/61739/how-to-determine-the-size-of-the-button-portion-of-a-windows-radio-button/124737#124737 1 Answer by David L Morris for How to determine the size of the button portion of a Windows radio button David L Morris 2008-09-24T00:29:17Z 2008-09-24T00:29:17Z <p>It has been a while since I worked on this, so what I am describing is what I did, and not necessarily a direct answer to the question.</p> <p>I happen to use bit maps 13 x 13 rather than 12 x 12. The bitmap part of the check box seems to be passed in the WM_DRAWITEM. However, I had also set up WM_MEASUREITEM and fed it the same values, so my answer may well be "Begging the question" in the correct philosophical sense.</p> <pre> case WM_MEASUREITEM: lpmis = (LPMEASUREITEMSTRUCT) lParam; lpmis->itemHeight = 13; lpmis->itemWidth = 13; break; case WM_DRAWITEM: lpdis = (LPDRAWITEMSTRUCT) lParam; hdcMem = CreateCompatibleDC(lpdis->hDC); if (lpdis->itemState & ODS_CHECKED) // if selected { SelectObject(hdcMem, hbmChecked); } else { if (lpdis->itemState & ODS_GRAYED) { SelectObject(hdcMem, hbmDefault); } else { SelectObject(hdcMem, hbmUnChecked); } } StretchBlt( lpdis->hDC, // destination DC lpdis->rcItem.left, // x upper left lpdis->rcItem.top, // y upper left // The next two lines specify the width and // height. lpdis->rcItem.right - lpdis->rcItem.left, lpdis->rcItem.bottom - lpdis->rcItem.top, hdcMem, // source device context 0, 0, // x and y upper left 13, // source bitmap width 13, // source bitmap height SRCCOPY); // raster operation DeleteDC(hdcMem); return TRUE; </pre> <p>This seems to work well for both Win2000 and XP, though I have nbo idea what Vista might do.</p> <p>It might be worth an experiment to see what leaving out WM_MEASUREITEM does, though I usually discover with old code that I usually had perfectly good reason for doing something that looks redundant.</p> http://stackoverflow.com/questions/118833/multiple-database-corruption-on-sql-server-2000-msde/118885#118885 1 Answer by David L Morris for Multiple database corruption on SQL Server 2000 MSDE David L Morris 2008-09-23T03:07:25Z 2008-09-23T03:07:25Z <p>I have a rule of thumb that for every 100 problems 90 of them are user misunderstandings (like turning off the PC), 10 are caused by software and 1 is hardware. </p> <p>With so many systems to update I would be looking for things like, systems that have not been fully patched. Users turning off PCs, and so on. Are the PCs locking up or crashing?</p> <p>If the answers to all the above questions is no, then based on the rule of thumb I would be looking towards your software, as that would be the interface (presumably) to the SQL database.</p> <p>There isn't enough information here to be more helpful.</p> <p>Is this software you have written?</p> http://stackoverflow.com/questions/110385/limiting-a-group-of-checkboxes-to-a-certain-amount-of-checks/110407#110407 3 Answer by David L Morris for Limiting a group of checkboxes to a certain amount of checks David L Morris 2008-09-21T06:38:21Z 2008-09-21T06:38:21Z <p>Just in case you haven't thought of it this way around. </p> <p>For a usability point of view, presumably you have some text saying something like "click no more than 4 check boxes".</p> <p>In which case, why not simply keep a count of the number of checked boxes, and prevent any changes to the 5th box (until of course there are only 3 check boxes). </p> http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100461#100461 0 Answer by David L Morris for Why are we still using compiler command lines? David L Morris 2008-09-19T08:19:56Z 2008-09-19T08:19:56Z <p>"My question is this: Why hasn't this been done before? It seems a natural progression to more tightly integrate the compiler with the build system. Assuming you keep the command line interface around, there are few downsides and a lot of benefits. For that matter, has anyone done this already?"</p> <p>This has been done before. Try separating the command line VB6 from the Link stage. (It can be done by nasty hacks, that is a whole other story). And it was bad news (well for me anyway). </p> <p>With a command line interface you can add other object modules and resources. </p> <p>A command line interface provides a "standard" interface that any and all systems can interact with.</p> <p>With a command line you can write batch files and make files and and have complete systems builds that are unattended, and zipped and/or copied and whatever else without further interaction.</p> http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro/98973#98973 4 Answer by David L Morris for How to generate a newline in a cpp macro ? David L Morris 2008-09-19T02:25:45Z 2008-09-19T02:25:45Z <p>The c compiler is aware of white space, but doesn't distinguish between spaces, tabs or new lines. </p> <p>If you mean how do I have a new line inside a string in a macro, then:</p> <pre> #define SOME_STRING "Some string\n with a new line." </pre> <p>will work.</p> http://stackoverflow.com/questions/89607/what-is-a-privileged-instruction/89856#89856 0 Answer by David L Morris for What is a Privileged instruction? David L Morris 2008-09-18T03:54:30Z 2008-09-18T03:54:30Z <p>As I suspected it was something silly that I did. I think I solved this twice as fast because of some of the clues in comments in the messages above. Thanks to those especially those who pointed to something early in the app overwriting the stack. I actually found several answer here more useful that the post I have marked as answering the question as they clued and queued me as to where to look, though I think it best sums up the answer.</p> <p>As it turned out I had just added a button that went over the maximum size of an array holding some tool bar button information (which was on the stack). I had forgotten that </p> <pre> #define MAX_NUM_TOOBAR_BUTTONS (24) </pre> <p>even existed! </p> http://stackoverflow.com/questions/1431032/how-can-i-crack-search-engins-like-google-robot-or-make-they-suffering Comment by David L Morris on How Can I Crack Search Engins Like Google Robot? Or Make They Suffering? David L Morris 2009-09-16T05:06:46Z 2009-09-16T05:06:46Z OP probably want to ask, &quot;How can I reduce the impact of spiders on my website?. If so, the question is probably not really a programming question. http://stackoverflow.com/questions/866692/if-you-add-extra-data-space-to-a-dialogbox-class-be-accessed-by-getwindowlongptr/866829#866829 Comment by David L Morris on If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space? David L Morris 2009-05-15T05:52:49Z 2009-05-15T05:52:49Z I have fixed the question, and my code (the code that didn't crash) definitely used '0' and not GWLP_USERDATA. I'm not quite sure where I got that from, probably miss-reading the MSDN documentation while writing the question. And with the question now corrected the first result is the one that actually worked (consistent with what you are saying). I thought I had bad code smell. Glad that I actually had bad question smell. http://stackoverflow.com/questions/866692/if-you-add-extra-data-space-to-a-dialogbox-class-be-accessed-by-getwindowlongptr/866829#866829 Comment by David L Morris on If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space? David L Morris 2009-05-15T05:28:24Z 2009-05-15T05:28:24Z For some reason I had convinced myself that GWLP_USERDATA was 0 (not -21), though I did know the other values were negative. I need to re-read this and think it through some more. http://stackoverflow.com/questions/866692/if-you-add-extra-data-space-to-a-dialogbox-class-be-accessed-by-getwindowlongptr Comment by David L Morris on If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space? David L Morris 2009-05-15T02:03:21Z 2009-05-15T02:03:21Z Next time I'll use the passive voice! http://stackoverflow.com/questions/866692/if-you-add-extra-data-space-to-a-dialogbox-class-be-accessed-by-getwindowlongptr Comment by David L Morris on If you add extra data space to a DialogBox class be accessed by GetWindowLongPtr, should you add DLGWINDOWEXTRA to access this extra space? David L Morris 2009-05-15T01:52:51Z 2009-05-15T01:52:51Z Apparently, this question is considered subjective by the helper bot? Bet it is the phrase &quot;tally with the collective wisdom&quot;. http://stackoverflow.com/questions/759532/what-do-you-say-to-express-the-first-succesful-running-of-a-program/759678#759678 Comment by David L Morris on What do you say to express the first succesful running of a program? David L Morris 2009-04-20T02:32:26Z 2009-04-20T02:32:26Z Agreed. Describes the feeling. While it might not look like it (Jeff!!!) it was actually a real question. I was hoping there might be an expression (presumably one I had forgotten). http://stackoverflow.com/questions/605285/what-are-some-of-the-methods-that-can-be-used-to-avoid-a-page-being-cached-by-the/605333#605333 Comment by David L Morris on What are some of the methods that can be used to avoid a page being cached by the browser? David L Morris 2009-03-04T04:23:28Z 2009-03-04T04:23:28Z Darryl, I think that depends on how you manage the session. You can, optionally, keep that in local memory on the server and not use a cookie. Remembering that the client is (by default) completely stateless. http://stackoverflow.com/questions/249528/converting-vb-code-tied-to-access-into-c-net Comment by David L Morris on Converting VB code tied to Access into C# / .NET David L Morris 2008-10-30T08:05:15Z 2008-10-30T08:05:15Z This question is a statement, not a question. http://stackoverflow.com/questions/215412/programmatically-change-screen-resolution Comment by David L Morris on Programmatically change screen resolution? David L Morris 2008-10-19T08:14:04Z 2008-10-19T08:14:04Z That was &quot;I totally agree... &quot; http://stackoverflow.com/questions/215412/programmatically-change-screen-resolution Comment by David L Morris on Programmatically change screen resolution? David L Morris 2008-10-19T06:54:01Z 2008-10-19T06:54:01Z I totality agree with the previous commenter. Unless this was some sort of utility for managing powerpoint presentations, it is hard to imagine an app where this would be a useful function. http://stackoverflow.com/questions/165763/about-closing-threads-that-are-not-programming-related/165935#165935 Comment by David L Morris on About closing threads that are not programming-related David L Morris 2008-10-16T02:39:18Z 2008-10-16T02:39:18Z Perhaps closing a question might be worth, say -5 or -10 rep points. http://stackoverflow.com/questions/195842/capture-which-step-of-an-animated-system-cursor-is-being-shown-on-windows/196879#196879 Comment by David L Morris on Capture which step of an animated system cursor is being shown on Windows David L Morris 2008-10-13T09:40:01Z 2008-10-13T09:40:01Z Hmm. Almost a different question. I would look at some of the system hook functions. But I doubt it will be there. http://stackoverflow.com/questions/99468/retrieving-multiple-rows-into-a-listview-control-from-an-odbc-source-works-well-f/146243#146243 Comment by David L Morris on Retrieving multiple rows into a listview control from an ODBC source works well for simple SELECTs with a statement attribute of SQL_SCROLLABLE. How do I do this with a UNION query? David L Morris 2008-10-10T09:58:38Z 2008-10-10T09:58:38Z Yes. That was the question. Select works Union of two selects does not. http://stackoverflow.com/questions/175545/worst-technobabble-youve-ever-heard/176758#176758 Comment by David L Morris on Worst technobabble you've ever heard David L Morris 2008-10-07T23:46:05Z 2008-10-07T23:46:05Z This database went on to become this site, and was named therefore appropriately. http://stackoverflow.com/questions/173241/what-library-should-be-included-to-use-transparentblt/173251#173251 Comment by David L Morris on What library should be included to use TransparentBlt? David L Morris 2008-10-06T05:16:11Z 2008-10-06T05:16:11Z Ah, cool. The MSDN documentation for VS6 says to use GDI32.LIB in the same place.