User Mike Dimmick - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:15:59Z http://stackoverflow.com/feeds/user/6970 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/802277/what-does-databaseex-do-in-tsql/806358#806358 6 Answer by Mike Dimmick for What does "%%DatabaseEx" do in TSQL? Mike Dimmick 2009-04-30T10:48:26Z 2009-04-30T10:48:26Z <p>I think the best answer here is that it's not documented, and not supported, so don't rely on it. While it's interesting to know how SQL Server works internally, anything you do with that knowledge has the potential to break in a future hotfix, service pack or release.</p> http://stackoverflow.com/questions/239512/http-1-0-and-deflate-gzip/240104#240104 2 Answer by Mike Dimmick for http/1.0 and deflate/gzip Mike Dimmick 2008-10-27T14:38:50Z 2008-10-27T14:38:50Z <p>There appear to be different interpretations of what <code>deflate</code> means. HTTP 1.1 specifies <a href="http://www.faqs.org/rfcs/rfc1950.html" rel="nofollow">RFC 1950</a> (zlib) format but IIS produces a raw <a href="http://www.faqs.org/rfcs/rfc1951.html" rel="nofollow">Deflate</a> stream instead. Internet Explorer cannot handle an RFC 1950 stream - it interprets the <code>deflate</code> Content-Encoding as RFC 1951 - so you may want to avoid that format entirely.</p> <p>The .NET <code>DeflateStream</code> <em>only</em> implements the Deflate compression algorithm, it does not create the Zlib format.</p> http://stackoverflow.com/questions/225625/locking-to-handle-concurrency-a-good-idea/225720#225720 5 Answer by Mike Dimmick for Locking to handle concurrency-- a good idea? Mike Dimmick 2008-10-22T13:29:16Z 2008-10-22T13:29:16Z <p>If you believe Oracle, no, not at all. That's because Oracle went to great lengths to avoid it.</p> <p>The problem is that readers can block writers and writers block readers, and a writer has to wait until all readers have finished with a row before it can write. That delays the writing process and its caller. Exclusive locks (for writing) are held to the end of the transaction, in case the transaction has to be rolled back - this stops other transactions seeing the new value until the transaction commits.</p> <p>In practice locking is generally fine if there isn't too much contention, the same as with any concurrent programming. If there's too much contention for a row/page/table (not many database servers do whole-DB locking), it will cause the transactions to execute in turn rather than concurrently.</p> <p>Oracle uses row-versioning, where instead of locking a row to write it, a new version of the row is created instead. Readers that need to repeat their reads remember which version of the row they read. However, an error will occur if a reader that's remembering its reads tries to update a row that has been updated by another writer since this transaction read it; this is to stop lost updates. To ensure you can update a row, you have to say that the SELECT is FOR UPDATE; if you do that, it takes a lock - only one transaction can hold a row FOR UPDATE at a time, and a conflicting transaction has to wait.</p> <p>SQL Server 2005 and later support Snapshot Isolation, which is their name for row-versioning. Again, you should ask for update locks if you need to update some data you just read - in SQL Server, use WITH (UPDLOCK).</p> <p>A further problem with locking is the likelihood of deadlocks. This is simply where two transactions each hold a lock on a resource the other needs, or in general a cycle of transactions hold locks that each other need to progress. The database server will generally detect this deadlock and kill one of the transactions, rolling it back - you then need to retry the operation. Any situation where you have multiple concurrent transactions modifying the same rows has potential for deadlock. The deadlock will occur if the rows are touched in a different order; it's very hard to enforce the order that the database server will use (generally you want the optimizer to pick the fastest order, which won't necessarily be consistent across different queries).</p> <p>Generally I would suggest the same as with threading - go with locks until you can prove that they're causing a scalability problem, then work out how to make the most critical sections lock-free.</p> http://stackoverflow.com/questions/184840/asp-net-session-and-storing-objects-that-use-com-interop/185051#185051 1 Answer by Mike Dimmick for ASP.NET session and storing objects that use COM interop Mike Dimmick 2008-10-08T21:47:37Z 2008-10-08T21:47:37Z <p>I think you will very rapidly get problems with one request blocking another.</p> <p>ASP.NET by default initialises COM on its threads to put the thread in a multi-threaded apartment. VB6 components were apartment-model at best. That means that when the MTA thread creates the component, it's put into the main STA if one already exists (which for ASP.NET worker processes, it won't) or a new thread is created specifically for the STA. It doesn't matter which MTA thread creates the component, the same STA is always used for the components that can't handle the MTA model. That means the same thread is used for every call to those components, so concurrent calls have to wait in line.</p> <p>To tell ASP.NET to initialize COM for single-threaded components, which will at least cause the object to be created on the same thread as the executing page, add the <code>AspCompat</code> attribute to the <a href="http://msdn.microsoft.com/en-us/library/ydy4x04a.aspx" rel="nofollow">@Page</a> directive.</p> <p>I would not cache the objects as they're very likely to have cross-thread issues when they're reused.</p> http://stackoverflow.com/questions/162309/how-to-launch-a-windows-process-as-64-bit-from-32-bit-code/162360#162360 3 Answer by Mike Dimmick for How to launch a Windows process as 64-bit from 32-bit code? Mike Dimmick 2008-10-02T13:49:30Z 2008-10-02T13:49:30Z <p>Whether a 32-bit or 64-bit native (unmanaged) program is run depends solely on the executable. There are two copies of <code>reg.exe</code>, in C:\Windows\System32 (64-bit) and C:\Windows\SysWOW64 (32-bit). Because you don't specify a path, you're getting whatever appears first in the <code>PATH</code> environment variable, which is the 32-bit version for a 32-bit process.</p> <p>You should really factor this function out into a separate program or COM object, and mark the program with a manifest, or launch the COM object using the <a href="http://msdn.microsoft.com/en-us/library/ms679687(VS.85).aspx" rel="nofollow">COM elevation moniker</a>.</p> http://stackoverflow.com/questions/161074/should-i-upgrade-to-windows-server-exchange-2008/161780#161780 0 Answer by Mike Dimmick for Should I upgrade to Windows Server & Exchange 2008? Mike Dimmick 2008-10-02T11:15:14Z 2008-10-02T11:15:14Z <p>There is no Exchange Server 2008. Exchange has always been tightly integrated with IIS which tends to bind it to a specific version of Windows. However, Exchange Server 2007 SP1 can be installed on Windows Server 2008.</p> <p>Exchange Server 2003, however, cannot run on Windows Server 2008 and I do not believe there are any plans to do so in a future service pack.</p> <p>Note that Exchange Server 2007 <em>requires</em> x64 architecture, running the 64-bit OS, on a production system. The days of booting <code>/3GB</code> are past - it simply does not provide enough virtual address space for current large databases. Exchange's long-running virtual memory fragmentation problem has not been fixed, it has just been given more virtual address space to work in.</p> http://stackoverflow.com/questions/159554/string-format-like-functionality-in-t-sql/159852#159852 1 Answer by Mike Dimmick for String.Format like functionality in T-SQL? Mike Dimmick 2008-10-01T21:29:43Z 2008-10-01T21:29:43Z <p>SQL Server is for retrieving data. Do your formatting client-side, in whatever language you're using on that side.</p> http://stackoverflow.com/questions/157318/resumable-downloads-when-using-php-to-send-the-file/157355#157355 0 Answer by Mike Dimmick for Resumable downloads when using PHP to send the file? Mike Dimmick 2008-10-01T12:35:43Z 2008-10-01T12:35:43Z <p>Resuming downloads in HTTP is done through the <code>Range</code> header. If the request contains a <code>Range</code> header, and if other indicators (e.g. <code>If-Match</code>, <code>If-Unmodified-Since</code>) indicate that the content hasn't changed since the download was started, you give a 206 response code (rather than 200), indicate the range of bytes you're returning in the <code>Content-Range</code> header, then provide that range in the response body.</p> <p>I don't know how to do that in PHP, though.</p> http://stackoverflow.com/questions/154463/sharpziplib-zipexception-end-of-extra-data-why-am-i-getting-this-exception/155564#155564 0 Answer by Mike Dimmick for SharpZipLib - ZipException "End of extra data" - Why am I getting this exception? Mike Dimmick 2008-09-30T23:25:36Z 2008-09-30T23:25:36Z <p>See the <a href="http://www.pkzip.com/support/zip-application-note" rel="nofollow">official ZIP specification</a>.</p> <p>Each file in a ZIP archive can have an 'extra' field associated with it. I think #ZipLib is telling you that the 'extra' field length given was longer than the amount of data that was available to read; in other words, the ZIP file has most likely been truncated.</p> http://stackoverflow.com/questions/154661/pre-setting-locations-for-looking-for-source-files-in-visual-c-6-0/155547#155547 1 Answer by Mike Dimmick for Pre-setting locations for looking for source files in Visual C++ 6.0 Mike Dimmick 2008-09-30T23:16:55Z 2008-09-30T23:16:55Z <p>The paths to the source files are recorded in the debugging information (Program Database, .pdb). Make the build tree on your machine the same as the machine it was built on.</p> http://stackoverflow.com/questions/154837/app-config-for-dll/155534#155534 0 Answer by Mike Dimmick for App.config for dll Mike Dimmick 2008-09-30T23:11:14Z 2008-09-30T23:11:14Z <p>I wrote this for a similar system. My recollection is that I used <code>Assembly.GetExecutingAssembly</code> to get the file path to the DLL, appended <code>.config</code> to that name, loaded it as an <code>XmlDocument</code>, navigated to the <code>&lt;appSettings&gt;</code> node and passed that to a <code>NameValueSectionHandler</code>'s <code>Create</code> method.</p> http://stackoverflow.com/questions/155125/ie-hosted-net-user-control-using-an-unmanaged-dll/155500#155500 1 Answer by Mike Dimmick for IE hosted .net user control using an unmanaged dll Mike Dimmick 2008-09-30T23:02:15Z 2008-09-30T23:02:15Z <p>I'd be surprised if it was possible to do this, because it would be a massive security hole. Native code can only run at full-trust, so loading a new native COM object requires that the object is signed, that the CAB it is downloaded in is also signed, and that the class (once registered) registers appropriately - and the user gets appropriate warnings to ensure that they only run controls and components that they trust.</p> <p>.NET code is allowed to circumvent some of these rules because it is verified, runs under a virtual machine and is sandboxed.</p> http://stackoverflow.com/questions/155144/how-can-i-share-application-configuration-in-a-net-application/155485#155485 2 Answer by Mike Dimmick for How can I share application configuration in a .net application? Mike Dimmick 2008-09-30T22:58:22Z 2008-09-30T22:58:22Z <p>Instead of adding <code>&lt;add&gt;</code> elements to your <code>&lt;appSettings&gt;</code> section of your config file, you can add a <code>file=</code> attribute to the <code>&lt;appSettings&gt;</code> element to tell it to load that data from a different file. You could then keep your common settings in that common file.</p> <p>See <a href="http://msdn.microsoft.com/en-us/library/ms228154.aspx" rel="nofollow">appSettings Element (General Settings Schema)</a> in MSDN Library.</p> http://stackoverflow.com/questions/155191/windows-api-commctrl-h-using-application-doesnt-work-on-machines-without-the-pla/155431#155431 0 Answer by Mike Dimmick for Windows API commctrl.h using application doesn't work on machines without the Platform SDK Mike Dimmick 2008-09-30T22:42:59Z 2008-09-30T22:42:59Z <p>Common controls is a red herring. Your problem is that the Visual C++ 8.0 runtime - I assume you're using Visual Studio 2005 - isn't installed. Either statically link to the C/C++ runtime library, or distribute the runtime DLL.</p> <p>You will have this problem with any C or C++ program that uses the DLL. You could get away with it in VS 6.0 as <code>msvcrt.dll</code> came with the OS from Windows 2000 up, and in VS.NET 2003 as <code>msvcr71.dll</code> came with .NET Framework 1.1. No more. Visual Studio 2005 and later use side-by-side assemblies to prevent DLL Hell, but that means you can't rely even on .NET 2.0 installing the exact version of C runtime that your program's built-in manifest uses. .NET 2.0's <code>mscorwks.dll</code> binds to version 8.0.50608.0 in its manifest; a VS-generated application binds to 8.0.50727.762 as of VS2005 SP1. My recollection is it used some pre-release version in the original (RTM) release of VS2005, which meant you had to deploy a Publisher Policy merge module if you were using the merge modules, to redirect the binding to the version actually in the released C run-time merge module.</p> <p>See also <a href="http://msdn.microsoft.com/en-us/library/ms235299(VS.80).aspx" rel="nofollow">Redistributing Visual C++ Files</a> on MSDN.</p> http://stackoverflow.com/questions/155202/network-location-cannot-be-reached-error-in-iis6/155348#155348 0 Answer by Mike Dimmick for "network location cannot be reached" error in IIS6. Mike Dimmick 2008-09-30T22:18:18Z 2008-09-30T22:18:18Z <p>That message generally comes from Windows networking (it's one of <code>ERROR_NETWORK_UNREACHABLE</code>, <code>ERROR_HOST_UNREACHABLE</code>, <code>ERROR_PROTOCOL_UNREACHABLE</code> - you can search for error messages in <code>WinError.h</code>). </p> <p>Have you set up virtual directories to point at network shares on another machine? If so, check connectivity to that machine.</p> http://stackoverflow.com/questions/155243/why-is-it-impossible-without-attempting-i-o-to-detect-that-tcp-socket-was-grace/155328#155328 4 Answer by Mike Dimmick for Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer? Mike Dimmick 2008-09-30T22:11:15Z 2008-09-30T22:11:15Z <p>The underlying sockets API doesn't have such a notification. </p> <p>The sending TCP stack won't send the FIN bit until the last packet anyway, so there could be a lot of data buffered from when the sending application logically closed its socket before that data is even sent. Likewise, data that's buffered because the network is quicker than the receiving application (I don't know, maybe you're relaying it over a slower connection) could be significant to the receiver and you wouldn't want the receiving application to discard it just because the FIN bit has been received by the stack.</p> http://stackoverflow.com/questions/152981/recommend-one-favorite-ssis-component-that-does-sftp-ftps/152990#152990 3 Answer by Mike Dimmick for Recommend ONE favorite SSIS component that does SFTP/FTPS Mike Dimmick 2008-09-30T13:20:05Z 2008-09-30T13:20:05Z <p>I use <a href="http://www.rebex.net/file-transfer-pack/default.aspx" rel="nofollow">Rebex.net File Transfer Pack</a> for SFTP and FTP transfers in .NET.</p> http://stackoverflow.com/questions/128279/how-best-to-define-a-custom-action-in-wix/152961#152961 2 Answer by Mike Dimmick for How best to define a custom action in WiX? Mike Dimmick 2008-09-30T13:13:12Z 2008-09-30T13:13:12Z <p>The WiX custom actions are a great model to follow. In this case, you only declare, with <code>CustomAction</code>, the immediate action, the deferred action, and the rollback action. You only schedule, with <code>Custom</code>, the immediate action, where the immediate action is implemented as code in a native DLL.</p> <p>Then, in the immediate action's <strong>code</strong>, you call <code>MsiDoAction</code> to schedule the rollback and deferred actions: as they are deferred, they are written into the script at the point you call <code>MsiDoAction</code> rather than executed immediately. You'll need to call <code>MsiSetProperty</code> as well to set the custom action data.</p> <p>Download the WiX source code and study how the <code>IISExtension</code> works, for example. WiX actions generally parse a custom table and generate the data for the deferred action's property based on that table.</p> http://stackoverflow.com/questions/152834/default-port-for-sql-server/152902#152902 4 Answer by Mike Dimmick for Default port for SQL Server Mike Dimmick 2008-09-30T12:52:16Z 2008-09-30T12:52:16Z <p>The default, unnamed instance always gets port 1433 for TCP. UDP port 1434 is used by the SQL Browser service to allow named instances to be located. In SQL Server 2000 the first instance to be started took this role.</p> <p>Non-default instances get their own dynamically-allocated port, by default. If necessary, for example to configure a firewall, you can set them explicitly. If you don't want to enable or allow access to SQL Browser, you have to either include the instance's port number in the connection string, or set it up with the Alias tab in <code>cliconfg</code> (SQL Server Client Network Utility) on each client machine.</p> <p>For more information see <a href="http://msdn.microsoft.com/en-us/library/ms181087(SQL.90).aspx" rel="nofollow">SQL Server Browser Service</a> on MSDN.</p> http://stackoverflow.com/questions/152837/how-to-insert-a-string-which-contains-an/152884#152884 4 Answer by Mike Dimmick for How to insert a string which contains an "&" Mike Dimmick 2008-09-30T12:45:13Z 2008-09-30T12:45:13Z <p>In a program, always use a parameterized query. It avoids SQL Injection attacks as well as any other characters that are special to the SQL parser.</p> http://stackoverflow.com/questions/152670/how-to-stop-the-access-2007-configuration-progress-when-switching-versions/152875#152875 2 Answer by Mike Dimmick for How to stop the Access 2007 Configuration Progress when switching versions Mike Dimmick 2008-09-30T12:43:36Z 2008-09-30T12:43:36Z <p>This is caused by Windows Installer, which is used by both installers. Advertised shortcuts as used by both Office 2003 and Office 2007 invoke Windows Installer to check that the entire feature is installed properly; the installer detects that something else (in this case the other product) has registered the file extensions used by Access (possibly the ProgIds as well) and decides that a repair is necessary, so it invokes the 'Configuring Office' dialog and proceeds to reinstall various components.</p> <p>To avoid this, run Access from Program Files directly; create shortcuts if you'll be doing this frequently.</p> http://stackoverflow.com/questions/152675/datareader-within-try-block-causing-potential-null-reference-error/152862#152862 4 Answer by Mike Dimmick for DataReader within try block causing potential null reference error Mike Dimmick 2008-09-30T12:40:12Z 2008-09-30T12:40:12Z <p>If <code>GetDataReader</code> throws, <code>dr</code> will not be assigned and will still have its initial value. VB.NET does initialise references to <code>Nothing</code>, but the compiler will not let you rely on that.</p> <p>If using .NET 2.0, I would recommend a <code>Using</code> statement:</p> <pre><code>Using dr As DbDataReader = connection.GetDataReader(sql_str) Try ' Do something with dr ' Catch ex As SqlClientException log.error(ex) End Try End Using </code></pre> http://stackoverflow.com/questions/152729/gdi-c-how-to-save-an-image-as-emf/152830#152830 1 Answer by Mike Dimmick for GDI+ / C#: How to save an image as EMF? Mike Dimmick 2008-09-30T12:31:40Z 2008-09-30T12:31:40Z <p>A metafile is a file which records a sequence of GDI operations. It is scalable because the original sequence of operations that generated the picture are captured, and therefore the co-ordinates that were recorded can be scaled.</p> <p>I think, in .NET, that you should create a <code>Metafile</code> object, create a <code>Graphics</code> object using <code>Graphics.FromImage</code>, then perform your drawing steps. The file is automatically updated as you draw on it. You can find a small sample in the documentation for <a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.addmetafilecomment.aspx" rel="nofollow">Graphics.AddMetafileComment</a>.</p> <p>If you really want to store a bitmap in a metafile, use these steps then use <code>Graphics.DrawImage</code> to paint the bitmap. However, when it is scaled it will be stretched using <code>StretchBlt</code>.</p> http://stackoverflow.com/questions/152745/optimising-c-2-d-arrays/152776#152776 5 Answer by Mike Dimmick for Optimising C++ 2-D arrays Mike Dimmick 2008-09-30T12:17:09Z 2008-09-30T12:17:09Z <p>Very likely this is a locality-of-reference issue. <code>vector</code> uses <code>new</code> to allocate its internal array, so each row will be at least a little apart in memory due to each block's header; it could be a long distance apart if memory is already fragmented when you allocate them. Different rows of the array are likely to at least incur a cache-line fault and could incur a page fault; if you're really unlucky two adjacent rows could be on memory lines that share a TLB slot and accessing one will evict the other.</p> <p>In contrast your other solutions guarantee that all the data is adjacent. It could help your performance if you align the structure so it crosses as few cache lines as possible.</p> <p><code>vector</code> is designed for <em>resizable</em> arrays. If you don't need to resize the arrays, use a regular C++ array. STL operations can generally operate on C++ arrays.</p> <p>Do be sure to walk the array in the correct direction, i.e. across (consecutive memory addresses) rather than down. This will reduce cache faults.</p> http://stackoverflow.com/questions/152541/stored-procedure-bit-parameter-activating-additional-where-clause-to-check-for-nu/152748#152748 2 Answer by Mike Dimmick for Stored procedure bit parameter activating additional where clause to check for null Mike Dimmick 2008-09-30T12:06:04Z 2008-09-30T12:06:04Z <p>This practice tends to confuse the query optimizer. I've seen SQL Server 2000 build the execution plan exactly the opposite way round and use an index on Column1 when the flag was set and vice-versa. SQL Server 2005 seemed to at least get the execution plan right on first compilation, but you then have a new problem. The system caches compiled execution plans and tries to reuse them. If you first use the query one way, it will still execute the query that way even if the extra parameter changes, and different indexes would be more appropriate.</p> <p>You can force a stored procedure to be recompiled on this execution by using <code>WITH RECOMPILE</code> in the <code>EXEC</code> statement, or every time by specifying <code>WITH RECOMPILE</code> on the <code>CREATE PROCEDURE</code> statement. There will be a penalty as SQL Server re-parses and optimizes the query each time.</p> <p>In general, if the form of your query is going to change, use dynamic SQL generation <strong>with parameters</strong>. SQL Server will also cache execution plans for parameterized queries and auto-parameterized queries (where it tries to deduce which arguments are parameters), and even regular queries, but it gives most weight to stored procedure execution plans, then parameterized, auto-parameterized and regular queries in that order. The higher the weight, the longer it can stay in RAM before the plan is discarded, if the server needs the memory for something else.</p> http://stackoverflow.com/questions/152555/h-or-hpp-for-your-class-definitions/152654#152654 0 Answer by Mike Dimmick for *.h or *.hpp for your class definitions Mike Dimmick 2008-09-30T11:34:42Z 2008-09-30T11:34:42Z <p>The extension of the source file may have meaning to your build system, for example, you might have a rule in your makefile for <code>.cpp</code> or <code>.c</code> files, or your compiler (e.g. Microsoft <code>cl.exe</code>) might compile the file as C or C++ depending on the extension. </p> <p>Because you have to provide the whole filename to the <code>#include</code> directive, the header file extension is irrelevant. You can include a <code>.c</code> file in another source file if you like, because it's just a textual include. Your compiler might have an option to dump the preprocessed output which will make this clear (Microsoft: <code>/P</code> to preprocess to file, <code>/E</code> to preprocess to <code>stdout</code>, <code>/EP</code> to omit <code>#line</code> directives, <code>/C</code> to retain comments)</p> <p>You might choose to use <code>.hpp</code> for files that are only relevant to the C++ environment, i.e. they use features that won't compile in C.</p> http://stackoverflow.com/questions/149058/how-to-display-a-non-ascii-filename-in-the-file-download-box-in-browsers/151064#151064 1 Answer by Mike Dimmick for How to display a non-ascii filename in the file download box in browsers? Mike Dimmick 2008-09-29T22:45:16Z 2008-09-29T22:55:45Z <p>The specs basically don't permit anything other than US-ASCII. HTTP headers are US-ASCII. HTTP's payload defaults to ISO 8859-1 but that refers to the content body, not the headers.</p> <p>Arguably the Right Thing to do would be to use MIME's technique for encoding non-ASCII data in headers, as described in <a href="ftp://ftp.rfc-editor.org/in-notes/rfc2047.txt" rel="nofollow">RFC 2047</a>, but I have no idea whether browsers actually support that.</p> <p><strong>EDIT:</strong> Whoops, no, RFC 2047 section 5 explicitly says that the encoded form is not permitted in Content-Disposition. Looks like you're out of luck - there is no standard.</p> <p><strong>EDIT 2:</strong> There is a standard - <a href="ftp://ftp.rfc-editor.org/in-notes/rfc2231.txt" rel="nofollow">RFC 2231</a> defines how this is now supposed to work. It has support from some browsers, but is not supported in IE. I found <a href="ftp://ftp.rfc-editor.org/in-notes/rfc2231.txt" rel="nofollow">some test cases</a> which demonstrate how it works and what browser support is available.</p> http://stackoverflow.com/questions/150803/side-effects-of-calling-registerwindow-multiple-times-with-same-window-class/150916#150916 0 Answer by Mike Dimmick for Side effects of calling RegisterWindow multiple times with same window class? Mike Dimmick 2008-09-29T22:01:19Z 2008-09-29T22:01:19Z <p>Well, you might be able to avoid a call down into the kernel - RegisterClass seems to need to get down there - but window classes are per-process and per-module, so you shouldn't hurt anything by registering a class multiple times.</p> <p>Given that there aren't generally that many classes, I wouldn't be too surprised to find it was actually implemented as a linked-list. You might get a little gain by looking it up in a hash table, but you'd probably be better off doing it as a simple boolean.</p> http://stackoverflow.com/questions/142644/weird-msc-8-0-error-the-value-of-esp-was-not-properly-saved-across-a-function-c/143387#143387 0 Answer by Mike Dimmick for Weird MSC 8.0 error: "The value of ESP was not properly saved across a function call..." Mike Dimmick 2008-09-27T10:40:41Z 2008-09-27T10:40:41Z <p>If you're using any callback functions with the Windows API, they must be declared using <code>CALLBACK</code> and/or <code>WINAPI</code>. That will apply appropriate decorations to make the compiler generate code that cleans the stack correctly. For example, on Microsoft's compiler it adds <code>__stdcall</code>.</p> <p>Windows has always used the <code>__stdcall</code> convention as it leads to (slightly) smaller code, with the cleanup happening in the called function rather than at every call site. It's not compatible with varargs functions, though (because only the caller knows how many arguments they pushed).</p> http://stackoverflow.com/questions/143285/how-much-memory-do-enums-take/143361#143361 4 Answer by Mike Dimmick for How much memory do Enums take? Mike Dimmick 2008-09-27T10:10:54Z 2008-09-27T10:10:54Z <p><code>bool</code> might be implemented as a single byte, but typically in a structure it would be surrounded by other elements that have alignment requirements that would mean that the boolean would effectively be occupying at least as much space as an <code>int</code>.</p> <p>Modern processors load data from main memory as a whole cache line, 64 bytes. The difference between loading one byte from L1 cache and loading four bytes is negligible.</p> <p>If you're trying to optimise for cache lines in a very high-performance application, then you might worry about how big your enum is, but generally I'd say it's clearer to define an enum than to use a boolean.</p> http://stackoverflow.com/questions/314863/how-to-convince-a-client-that-expensive-is-cheaper/314920#314920 Comment by Mike Dimmick on How to convince a client that "expensive" is "cheaper"? Mike Dimmick 2008-11-25T11:48:32Z 2008-11-25T11:48:32Z As always you fall into the trap of equating coding with being a bricklayer, as if the final level of design were a blueprint that could be implemented by anyone. It isn't. We have outsourced the 'building' activity to our compilers. The code is the most detailed blueprint. http://stackoverflow.com/questions/155243/why-is-it-impossible-without-attempting-i-o-to-detect-that-tcp-socket-was-grace/155328#155328 Comment by Mike Dimmick on Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer? Mike Dimmick 2008-09-30T22:46:44Z 2008-09-30T22:46:44Z Sure - if nothing's buffered then the FIN will be sent immediately, on an otherwise empty packet (no payload). After FIN, though, no more data packets are sent by that end of the connection (it will still ACK anything sent to it). http://stackoverflow.com/questions/68666/clipbrdecantopen-error-when-setting-the-clipboard-from-net/69081#69081 Comment by Mike Dimmick on CLIPBRD_E_CANT_OPEN error when setting the Clipboard from .NET Mike Dimmick 2008-09-26T16:07:59Z 2008-09-26T16:07:59Z If you look at the internals of Clipboard.SetText, on .NET 2.0 SP1 at least, you'll see it already has a retry/wait loop. Retries up to 10 times with a 100ms delay. http://stackoverflow.com/questions/132685/font-size-in-css-or-em/132712#132712 Comment by Mike Dimmick on Font size in CSS - % or em? Mike Dimmick 2008-09-25T11:34:11Z 2008-09-25T11:34:11Z IE7 scales pixel-values fine, if you use zoom. IE6 didn't have zoom, only text-size. Zoom became a requirement because of designers who used fixed pixel scales rather than allowing the page to reflow with text size changes. http://stackoverflow.com/questions/126751/compilation-fails-randomly-cannot-open-program-database/127108#127108 Comment by Mike Dimmick on Compilation fails randomly: "cannot open program database" Mike Dimmick 2008-09-24T15:17:06Z 2008-09-24T15:17:06Z Generally anti-virus on-access scanners work by installing a file-system filter. User-mode programs should see no difference. More likely to be a search indexer or similar. http://stackoverflow.com/questions/126800/is-there-a-way-to-determine-if-an-exception-is-occurring/127644#127644 Comment by Mike Dimmick on Is there a way to determine if an exception is occurring? Mike Dimmick 2008-09-24T15:10:53Z 2008-09-24T15:10:53Z Yep, smells of trying to avoid ending up in terminate() by not throwing when already unwinding. http://stackoverflow.com/questions/118748/dos-command-to-open-multiple-pages-in-internet-explorer-7 Comment by Mike Dimmick on DOS command to open multiple pages in Internet Explorer 7 Mike Dimmick 2008-09-23T11:50:40Z 2008-09-23T11:50:40Z Nitpick: not DOS. Windows command-line environment. CMD.EXE is a console-mode Win32 executable and does not use DOS interfaces. Many new commands and features added to Windows NT CLI. http://stackoverflow.com/questions/119123/why-isnt-sizeof-for-a-struct-equal-to-the-sum-of-sizeof-of-each-member/119128#119128 Comment by Mike Dimmick on Why isn't sizeof for a struct equal to the sum of sizeof of each member? Mike Dimmick 2008-09-23T11:16:30Z 2008-09-23T11:16:30Z Enabling pragmas for unaligned accesses generally cause your code to balloon in size, on processors which throw misalignment faults, as code to fix up every misalignment has to be generated. ARM also throws misalignment faults. http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119572#119572 Comment by Mike Dimmick on c# determine the number of lines within a text file Mike Dimmick 2008-09-23T11:08:09Z 2008-09-23T11:08:09Z Small note: because String is a reference type the array would be the size of the number of lines x the size of a pointer, but you're correct that it still needs to store the text, each line as a single String object. http://stackoverflow.com/questions/78141/calling-base-dispose-automatically-from-derived-classes/78315#78315 Comment by Mike Dimmick on Calling base.Dispose() automatically from derived classes Mike Dimmick 2008-09-22T12:59:39Z 2008-09-22T12:59:39Z There is no such thing as a default finalizer. If you don't create one, it does not exist and no finalization will occur. http://stackoverflow.com/questions/114527/simplest-way-to-have-a-configuration-file-in-a-windows-forms-c-application/114552#114552 Comment by Mike Dimmick on Simplest way to have a configuration file in a Windows Forms C# Application Mike Dimmick 2008-09-22T12:47:26Z 2008-09-22T12:47:26Z Actually it works in all versions of .NET, from v1.0 onwards. The new class in .NET 2.0 is ConfigurationManager. http://stackoverflow.com/questions/107566/where-should-you-enable-ssl/107572#107572 Comment by Mike Dimmick on Where should you enable SSL? Mike Dimmick 2008-09-20T18:30:32Z 2008-09-20T18:30:32Z Because it is not apparent to the user that the form will be submitted to a secure server. Any time you're collecting sensitive data the form should be on a secure server so that the lock icon appears at that point. http://stackoverflow.com/questions/93154/how-to-protect-yourself-against-shell-dlls-loaded-into-your-process/93239#93239 Comment by Mike Dimmick on How to protect yourself against shell DLLs loaded into your process? Mike Dimmick 2008-09-18T15:08:36Z 2008-09-18T15:08:36Z wxVault - Embassy Trust Suite - should be terminated with extreme prejudice: <a href="http://mikedimmick.blogspot.com/2007/12/calling-out-embassy-trust-suite.html" rel="nofollow">mikedimmick.blogspot.com/2007/12/&hellip;</a> http://stackoverflow.com/questions/79350/what-open-source-virtual-private-server-program-do-you-recommend-with-windows-as/82389#82389 Comment by Mike Dimmick on What open source virtual private server program do you recommend with windows as host Mike Dimmick 2008-09-18T12:15:02Z 2008-09-18T12:15:02Z It seemed obvious that the OP was thinking free-as-in-beer, not free-as-in-speech. http://stackoverflow.com/questions/84234/is-there-a-single-resource-which-explains-windows-memory-thoroughly/84262#84262 Comment by Mike Dimmick on Is there a single resource which explains windows memory thoroughly? Mike Dimmick 2008-09-17T16:33:10Z 2008-09-17T16:33:10Z The other author is David A. Solomon. On the previous book Inside Windows 2000, Solomon got top billing, and on the second edition (Inside Windows NT 4.0) he was the only author.