User Mike Thompson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:23:03Z http://stackoverflow.com/feeds/user/2754 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1535774/iphone-ui-controls-for-winforms 0 iPhone UI controls for WinForms Mike Thompson 2009-10-08T05:27:16Z 2009-10-18T15:04:09Z <p>Does anybody know where I could find WinForms controls that mimic those on the iPhone? I am interested in doing some iPhone prototyping using Visual Studio and it would be handy if I could make the controls look like the native iPhone controls.</p> <p>I know that I could just use Interface Builder on a Mac, but I do not want to do this. I just want to play around with various ideas and I will be much faster in Visual Studio.</p> http://stackoverflow.com/questions/802987/what-are-the-benefits-of-covariance-and-contravariance/1408816#1408816 0 Answer by Mike Thompson for What are the benefits of covariance and contravariance? Mike Thompson 2009-09-11T03:19:46Z 2009-09-11T03:19:46Z <p>Bart De Smet has a great blog entry about covariance &amp; contravariance <a href="http://bartdesmet.net/blogs/bart/archive/2009/04/13/c-4-0-feature-focus-part-4-generic-co-and-contra-variance-for-delegate-and-interface-types.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1163465/covariance-and-contravariance-in-programming-languages/1408812#1408812 0 Answer by Mike Thompson for Covariance and contravariance in programming languages Mike Thompson 2009-09-11T03:19:03Z 2009-09-11T03:19:03Z <p>Bart De Smet has a great blog entry about covariance &amp; contravariance <a href="http://bartdesmet.net/blogs/bart/archive/2009/04/13/c-4-0-feature-focus-part-4-generic-co-and-contra-variance-for-delegate-and-interface-types.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/476534/c-array-covariance-in-generic-classes/1408805#1408805 0 Answer by Mike Thompson for C#-Array Covariance In Generic Classes Mike Thompson 2009-09-11T03:16:41Z 2009-09-11T03:16:41Z <p>Bart De Smet has a great blog entry about covariance &amp; contravariance <a href="http://bartdesmet.net/blogs/bart/archive/2009/04/13/c-4-0-feature-focus-part-4-generic-co-and-contra-variance-for-delegate-and-interface-types.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1377413/hierarchical-queries-in-linq 3 Hierarchical queries in LINQ Mike Thompson 2009-09-04T05:43:51Z 2009-09-05T08:15:54Z <p>Here is a simple LINQ query (based on NorthWind) that returns a list of Customers. Each customer contains a list of Orders.</p> <pre><code>from c in Customers join o in Orders on c.CustomerID equals o.CustomerID into CO select new {c, CO} </code></pre> <p>This works fine and the SQL generated is also fine. Now I want to go one step further. I want each Order object to contain a list of OrderDetails. I am using the following query:</p> <pre><code>from c in Customers join od in ( from o in Orders join od in OrderDetails on o.OrderID equals od.OrderID into OD select new { o.CustomerID, o, OD } ) on c.CustomerID equals od.CustomerID into COD select new { c, COD } </code></pre> <p>This query works but generates horrible SQL. A separate query is issued for each Customer. When you look at the lambda code we have:</p> <pre><code>Customers .GroupJoin ( Orders .GroupJoin ( OrderDetails, o =&gt; o.OrderID, od =&gt; od.OrderID, (o, OD) =&gt; new { CustomerID = o.CustomerID, o = o, OD = OD } ), c =&gt; c.CustomerID, od =&gt; od.CustomerID, (c, COD) =&gt; new { c = c, COD = COD } ) </code></pre> <p>The nested GroupJoins seem to be the cause of the multiple SQL stataments. However, I have tried various combinations without success. Any ideas?</p> <p>EDIT: I may have been a little unclear about what I was trying to achieve. I want the OrderDetail object to be a property of the Order object, which is in turn a property of the Customer object. I do not want Order &amp; OrderDetail to be properties of Customer. I am trying to get list of unique customers. For each customer I expect to a list of Orders and for each Order I want a list of OrderDetails. I want the hierarchy to go one level deeper than my original query.</p> http://stackoverflow.com/questions/1377430/why-is-squaring-a-number-faster-than-multiplying-two-random-numbers/1377472#1377472 5 Answer by Mike Thompson for Why is squaring a number faster than multiplying two random numbers? Mike Thompson 2009-09-04T06:03:03Z 2009-09-04T06:03:03Z <p>Do you mean multiplying a number by a power of 2? This is usually quicker than multiplying any two random numbers since the result can be calculated by simple bit shifting. However, bear in mind that modern microprocessors dedicate lots of brute force silicon to these types of calculations and most arithmetic is performed with blinding speed compared to older microprocessors</p> http://stackoverflow.com/questions/1230618/generic-method-overloading-compilation-error-in-vb 1 Generic method overloading compilation error in VB Mike Thompson 2009-08-05T00:37:26Z 2009-09-03T11:47:17Z <p>I have a problem with the VB.NET compiler failing to compile a class (in a separate C# assembly) which contains two overloads of a method with generic arguments. The equivalent code in C# compiles against the same assembly with no errors.</p> <p>Here are the two method signatures:</p> <pre><code>protected void SetValue&lt;T&gt;(T newValue, ref T oldValue) protected void SetValue&lt;T&gt;(T? newValue, ref T? oldValue) where T : struct </code></pre> <p>Here is the code to three assemblies that demonstrate the problem. The first is the C# assembly with a Base class that implements the generic methods. The second is a C# class derived from Base and calls both overloads of SetValue correctly. The third is a VB class also derived from Base, but fails to compile with the following error message:</p> <p>Error 1 Overload resolution failed because no accessible 'SetValue' is most specific for these arguments: 'Protected Sub SetValue(Of T As Structure)(newValue As System.Nullable(Of Integer), ByRef oldValue As System.Nullable(Of Integer))': Not most specific. 'Protected Sub SetValue(Of T)(newValue As System.Nullable(Of Integer), ByRef oldValue As System.Nullable(Of Integer))': Not most specific. </p> <ol> <li><p>Base Class assembly</p> <p>example:</p> <pre><code>public class Base { protected void SetValue&lt;T&gt;(T newValue, ref T oldValue) { } protected void SetValue&lt;T&gt;(T? newValue, ref T? oldValue) where T : struct { } } </code></pre></li> <li><p>C# Derived Class</p> <p>example:</p> <pre><code>public class DerivedCSharp : Base { private int _intValue; private int? _intNullableValue; public void Test1(int value) { SetValue(value, ref _intValue); } public void Test2(int? value) { SetValue(value, ref _intNullableValue); } } </code></pre></li> <li><p>VB Derived Class</p> <p>example:</p> <pre><code>Public Class DerivedVB Inherits Base Private _intValue As Integer Private _intNullableValue As Nullable(Of Integer) Public Sub Test1(ByVal value As Integer) SetValue(value, _intValue) End Sub Public Sub Test2(ByVal value As Nullable(Of Integer)) SetValue(value, _intNullableValue) End Sub End Class </code></pre></li> </ol> <p>Am I doing something wrong in the VB code, or are C# &amp; VB different when it comes to generic overload resolution? If I make the method arguments in Base non-generic then everything compiles correctly, but then I have to implement SetValue for every type that I wish to support.</p> http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq 3 Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T00:36:00Z 2009-08-22T22:16:15Z <p>I have a LINQ query to retrieve the maximum value of an integer column. The column is defined as NOT NULL in the database. However, when using the MAX aggregate function in SQL you will get a NULL result if no rows are returned by the query.</p> <p>Here is a sample LINQ query I am using against the Northwind database to demonstrate what I am doing. </p> <pre><code>var maxValue = (from p in nw.Products where p.ProductID &lt; 0 select p.ProductID as int?).Max(); </code></pre> <p>C# correctly parses this query and maxValue has a type of int?. Furthermore, the SQL that is generated is perfect:</p> <pre><code>SELECT MAX([t0].[ProductID]) AS [value] FROM [Products] AS [t0] WHERE [t0].[ProductID] &lt; @p0 </code></pre> <p>The question is, how do I code this using VB.NET and get identical results? If I do a straight translation:</p> <pre><code>dim maxValue = (from p in Products where p.ProductID &lt; 0 select TryCast(p.ProductID, integer?)).Max() </code></pre> <p>I get a compile error. TryCast will only work with reference types, not value types. TryCast &amp; "as" are slightly different in this respect. C# does a little extra work with boxing to handle value types. So, my next solution is to use CType instead of TryCast:</p> <pre><code>dim maxValue = (from p in Products where p.ProductID &gt; 0 select CType(p.ProductID, integer?)).Max() </code></pre> <p>This works, but it generates the following SQL:</p> <pre><code>SELECT MAX([t1].[value]) AS [value] FROM ( SELECT [t0].[ProductID] AS [value], [t0].[ProductID] FROM [Products] AS [t0] ) AS [t1] WHERE [t1].[ProductID] &gt; @p0 </code></pre> <p>While this is correct, it is not very clean. Granted, in this particular case SQL Server would probably optimize the query it to be the same as the C# version, I can envisage situations where this might not be the case. Interestingly, in the C# version, if I use a normal cast (i.e. (int?)p.ProductID) instead of using the "as" operator I get the same SQL as the VB version.</p> <p>Does anyone know if there is a way to generate the optimal SQL in VB for this type of query?</p> http://stackoverflow.com/questions/1242567/using-hardlinks-when-cloning-a-mercurial-repository-under-windows 3 Using hardlinks when cloning a Mercurial repository under Windows Mike Thompson 2009-08-07T02:17:22Z 2009-08-10T23:48:55Z <p>I am using Mercurial under Windows XP (using the TortoiseHg distribution) and I want to use NTFS hardlinks when cloning a repository. Out of the box Mercurial does not do this. I have read that a win32file python extension needs to be enabled. So far I have been unsuccessful in making this work (adding a win32file entry to the extensions section in mercurial.ini does not seem to work). Is there a simple way to enable it? </p> http://stackoverflow.com/questions/463742/why-do-so-many-programmers-not-know-how-to-spell -6 Why do so many programmers not know how to spell? [closed] Mike Thompson 2009-01-21T00:55:40Z 2009-07-29T06:15:39Z <p>This phenomenon has bothered me for many years. It really disturbs me that so many programmers pay so little attention to this skill. I am referring to native English speakers, not those for whom English is a second or foreign language. I read enormous of code that is commented in error ridden English. I'm not suggesting we should write perfect Queen's English; just writing that doesn't jar when read.</p> <p>Most of us have spent 12 or more years learning this skill, so either they weren't paying attention in class and failing English, or the education system is failing us. I find that the errors fall into four main categories:</p> <ol> <li><p>General typos. This is just laziness. Computers now have many ways to identify this such as MS Word red line and various browser plugins. This should not happen.</p></li> <li><p>Errors such as homophones. A typical example would be there, their &amp; they're. Is this laziness or do some people not know the difference between them?</p></li> <li><p>Full of grammatical errors.</p></li> <li><p>Anything to do with apostrophes. The most common is the possessive form it (its) and the contraction 'it is' (it's).</p></li> </ol> <p>I suspect most people know, or at least suspect, when they are making a mistake, but are too lazy to correct it. If you can't (or won't) write coherent sentences in your comments &amp; documentation, then how good is your code going to be?</p> http://stackoverflow.com/questions/354488/is-there-a-way-to-split-a-widescreen-monitor-in-to-two-or-more-virtual-monitors 7 Is there a way to split a widescreen monitor in to two or more virtual monitors? Mike Thompson 2008-12-09T22:30:34Z 2009-06-29T14:12:24Z <p>Like most developers I have grown to love dual monitors. I won't go into all the reasons for their goodness; just take it as a given.</p> <p>However, they are not perfect. You can never seem to line them up "just right". You always end up with the monitors at slight funny angles. And of course the bezel always gets in the way. And this is with identical monitors. The problem is much worse with different monitors -- VMWare's multi monitor feature won't even work with monitors of differnt resolutions.</p> <p>When you use multiple monnitors, one of them becomes your primary monitor of focus. Your focus may flip from one monitor to the other, but at any point in time you are usually focusing on only one monitor. There are exceptions to this (WinDiff, Excel), but this is generally the case. I suggest that having a single large monitor with all the benefits of multiple smaller monitors would be a better solution.</p> <p>Wide screen monitors are fantastic, but it is hard to use all the space efficiently. If you are writing code you are generally working on the left-hand side of the window. If you maximize an editor on a wide-screen monitor the right-hand side of the window will be a sea of white. Programs like WinSplit Revolution will help to organise your windows, but this is really just addressing the symptom, not the problem. Even with WinSplit Revolution, when you maximise a window it will take up the whole screen. You can't lock a window into a specific section of the screen.</p> <p>This is where virtual monitors comes in. </p> <p>What would be really nice is a video driver that sits on top of the existing driver, but allows a single monitor to be virtualised into multiple monitors. Control Panel would see your single physical monitor as two or more virtual monitors. The software could even support a virtual bezel to emphasise what is happening, or you could opt for seamless mode. Programs like WinSplit Revolution and UltraMon would still work. This virtual video driver would allow you to slice &amp; dice your physical monitor into as many virtual monitors as you want. </p> <p>Does anybody know if such software exists? If not, are there any budding Windows display driver guru's out there willing to take up the challenge?</p> <p>I am not after the myriad of virtual desktop/window manager programs that are available. I get frustrated with these programs. They seem good at first but they usually have some strange behaviour and don't work well with other programs (such as WinSplit Revolution). </p> <p>I want the real thing!</p> http://stackoverflow.com/questions/1010671/calling-a-method-on-a-generic-base-class-created-with-activator-createinstance 0 Calling a method on a generic base class created with Activator.CreateInstance Mike Thompson 2009-06-18T03:41:49Z 2009-06-18T05:51:16Z <p>The following program works correctly. However, I would like to change it to not use InvokeMember. I would like to be able to cast the return value from CreateInstance into GenericBase and call the Foo method directly. In this code sample I know that the type is Derived. However, in my actual code, all I know is that the type is derived from GenericBase. All my attempts to cast an <strong>object</strong> into a <strong>GenericBase</strong> fail to compile. C# insists that I supply the type parameter when I use GenericType in a cast.</p> <p>Is this possible?</p> <pre><code>using System; using System.Collections.Generic; using System.Text; namespace GenericTest { class Program { static void Main(string[] args) { Type t = typeof(Derived); object o = Activator.CreateInstance(t); t.InvokeMember("Foo", System.Reflection.BindingFlags.InvokeMethod, null, o, new object[] { "Bar" }); } } class GenericBase&lt;T&gt; { public void Foo(string s) { Console.WriteLine(s); } } class Derived : GenericBase&lt;int&gt; { } } </code></pre> http://stackoverflow.com/questions/518649/how-to-debug-stored-procedures-in-sybase-ase 1 How to debug stored procedures in Sybase ASE? Mike Thompson 2009-02-06T00:36:48Z 2009-06-12T17:02:22Z <p>Is there a good tool from either Sybase or elsewhere that will enable me to debug stored procedures in Sybase ASE? I need to be able to set breakpoints &amp; watchpoints.</p> <p>Previously, in Sybase ASA (not ASE), I used Sybase Central to do this. There is a plugin for ASE, but I doubt it will let me debug procedures.</p> http://stackoverflow.com/questions/449642/handling-multiple-changesets-in-source-control-systems 5 Handling multiple changesets in source control systems Mike Thompson 2009-01-16T06:08:25Z 2009-04-28T09:05:05Z <p>I have a fairly infrequent problem occuring with source control. In the example here the problem was occuring with Perforce, but I suspect the same problem will occur with many SCMs, especially distributed SCMs.</p> <p>Perforce supports changelists (or changesets if you prefer). Changelists support two common usages:</p> <ol> <li><p>When you commit a changelist, the commit is atomic so that all the files are committed or none are. This is the headline feature that most people talk about when referring to changelists.</p></li> <li><p>Perforce supports multiple changelists. Basically, when you check out a file you tell it which changelist it belongs to. So, if you are working on the fancy new email feature which is going to take months of work and makes millions of dollars and somebody from tech support comes to you with a bug that must be fixed yesterday, you don't have to start with a new branch of the whole project. You can just check out the buggy file into a new changelist, fix the problem, check in the new changelist and get back to the real work of the new email feature, as though nothing had happened.</p></li> </ol> <p>For the most part everything works great. However, when you are implemening the email feature you are making zillions of changes all over the place, especially in main.h, and it just so happens that when go to work on the bug fix you discover that the tiny change you have to make is also in main.h. The changelist for the new feature already has main.h checked out, so you can't easily put it in the changelist for the bug fix.</p> <p>Now what do you do? You have several choices:</p> <ol> <li><p>Create a new clientspec. A clientspec in Perforce is a list of files/directories in the depot and a local destination where everything is to be copied. So you can create a second copy of the project without any of changes for the email feature.</p></li> <li><p>Do a fudge. Backup your modified copy of main.h and revert this file. You are then free to checkout main.h into the bugfix changelist. You fix the bug, check in the bugfix changelist, then checkout main.h into the email feature changelist. Finally you merge all your changes from the backup you made at the start.</p></li> <li><p>You determine that all the changes you have made to main.h have no side affects or dependencies, so you just move main.h into the bugfix changelist, make the change and check it in. You then check it out again into the email feature changelist. Obviously there are two problems with this approach: firstly there may in fact be side affects that you hadn't considered and secondly you have corrupted your version histoty.</p></li> </ol> <p>Option 1 is probably the cleanest, but not always practical. A project I was working on had millions of lines of code and a really complicated build process. It would take a day to setup a new environment, so it was not really practical for a 5 minute bug fix.</p> <p>Option 3 is a bad option, but is is the quickest, so it can be very seductive.</p> <p>That leaves Option 2, which is the one I would generally use. </p> <p>Does anybody have a better solution?</p> <p>My apologies for the lengthy question, but I have discovered on StackOverflow that fully thought out questions elicit better answers.</p> http://stackoverflow.com/questions/732909/a-simple-sql-select-query/733009#733009 2 Answer by Mike Thompson for A Simple Sql Select Query Mike Thompson 2009-04-09T06:10:57Z 2009-04-09T06:10:57Z <p>You would not typically organise your SQL database in quite this way. What you are describing are two entities (Meeting &amp; Participant) that have a one-to-many relationship. i.e. a meeting can have zero or more participants. To model this in SQL you would use three tables: a meeting table, a participant table and a MeetingParticipant table. The MeetingParticipant table holds the links between meetings &amp; participants. So, you might have something like this (excuse any sql syntax errors)</p> <pre><code>create table Meeting ( MeetingID int, Name varchar(50), Location varchar(100) ) create table Participant ( ParticipantID int, FirstName varchar(50), LastName varchar(50) ) create table MeetingParticipant ( MeetingID int, ParticipantID int ) </code></pre> <p>To populate these tables you would first create some Participants:</p> <pre><code>insert into Participant(ParticipantID, FirstName, LastName) values(1, 'Tom', 'Jones') insert into Participant(ParticipantID, FirstName, LastName) values(2, 'Dick', 'Smith') insert into Participant(ParticipantID, FirstName, LastName) values(3, 'Harry', 'Windsor') </code></pre> <p>and create a Meeting or two insert into Meeting(MeetingID, Name, Location) values(10, 'SQL Training', 'Room 1') insert into Meeting(MeetingID, Name, Location) values(11, 'SQL Training', 'Room 2')</p> <p>and now add some participants to the meetings</p> <pre><code>insert into MeetingParticipant(MeetingID, ParticipantID) values(10, 1) insert into MeetingParticipant(MeetingID, ParticipantID) values(10, 2) insert into MeetingParticipant(MeetingID, ParticipantID) values(11, 2) insert into MeetingParticipant(MeetingID, ParticipantID) values(11, 3) </code></pre> <p>Now you can select all the meetings and the participants for each meeting with</p> <pre><code>select m.MeetingID, p.ParticipantID, m.Location, p.FirstName, p.LastName from Meeting m join MeetingParticipant mp on m.MeetingID=mp.MeetingID join Participant p on mp.ParticipantID=p.ParticipantID </code></pre> <p>the above should produce</p> <pre><code>MeetingID ParticipantID Location FirstName LastName 10 1 Room 1 Tom Jones 10 2 Room 1 Dick Smith 11 2 Room 2 Dick Smith 11 3 Room 2 Harry Windsor </code></pre> <p>If you want to find out all the meetings that "Dick Smith" is in you would write something like this</p> <pre><code>select m.MeetingID, m.Location from Meeting m join MeetingParticipant mp on m.MeetingID=mp.ParticipantID where mp.ParticipantID=2 </code></pre> <p>and get</p> <pre><code>MeetingID Location 10 Room 1 11 Room 2 </code></pre> <p>I have omitted important things like indexes, primary keys and missing attributes such as meeting dates, but it is clearer without all the goo.</p> http://stackoverflow.com/questions/514447/whats-your-favorite-dictionary-the-one-with-the-words/514465#514465 0 Answer by Mike Thompson for What's your favorite dictionary (the one with the words)? Mike Thompson 2009-02-05T03:47:25Z 2009-02-05T03:47:25Z <p>Try the Oxford Consise English dictionary. It is a good comprimise between not having enough content and being too much. The OED makes a reasonable attempt to handle British/American/Canadian/Australian/New Zealand variations.</p> <p>In Australia I would recommend the Macquarie dictionary.</p> http://stackoverflow.com/questions/468119/whats-the-best-way-to-calculate-the-size-of-a-directory-in-net/468143#468143 3 Answer by Mike Thompson for What's the best way to calculate the size of a directory in .NET? Mike Thompson 2009-01-22T05:42:26Z 2009-01-22T05:42:26Z <p>I do not believe there is a Win32 API to calculate the space consumed by a directory, although I stand to be corrected on this. If there were then I would assume Explorer would use it. If you get the Properties of a large directory in Explorer, the time it takes to give you the folder size is proportional to the number of files/sub-directories it contains.</p> <p>Your routine seems fairly neat &amp; simple. Bear in mind that you are calculating the sum of the file lengths, not the actual space consumed on the disk. Space consumed by wasted space at the end of clusters, file streams etc, are being ignored.</p> http://stackoverflow.com/questions/467882/constructors-or-static-methods-for-loading-and-saving-objects/467894#467894 -2 Answer by Mike Thompson for Constructors or Static Methods for Loading and Saving Objects? Mike Thompson 2009-01-22T02:50:10Z 2009-01-22T02:50:10Z <p>Why decide? Use both.</p> http://stackoverflow.com/questions/464042/should-you-enforce-constraints-at-the-database-level-as-well-as-the-application-l/464082#464082 6 Answer by Mike Thompson for Should you enforce constraints at the database level as well as the application level? Mike Thompson 2009-01-21T04:29:08Z 2009-01-21T22:30:05Z <p>If you follow the Jeff Atwood school of a database is just a dumb data storage &amp; retrieval system then you would put all the validation in the application layer.</p> <p>However, I find that applications are like small children. Unchecked they will throw everything around the room. It will be up to the parents to clean up the mess. In this case it will be the DBAs doing the cleaning.</p> <p>However, I think you need to be careful about using every database data integrity feature, just because it is there. Overloading your database with foreign key constraints and triggers might create more problems than you think. I tend to use foreign keys only on tables which are very closely related, such as a header/detail table pair. If you start adding foreign keys everywhere you can end up with an unmagageable database. </p> <p>I rarely use triggers. I think they make a database very opaque. You issue a simple update/insert/delete command and strange things might happen. I guess there are two places where triggers are unavoidable:</p> <ol> <li><p>When you don't have source code to the application writing to the database and you need to modify the behaviour. Triggers are your only option.</p></li> <li><p>If you are performing CRUD operations on a view. Triggers are mandatory for the insert/update/delete operations.</p></li> </ol> <p>I tend to perform basic validation in the app. This way the user is given immediate feedback that something is wrong. Complex validation that requires looking up related tables is probably best done in the database (as well as the simple validation that the app does). I would argue that some forms of validation are almost impossible to guarantee at the application level, without using complicated locking strategies.</p> <p>If you have multiple applications, possibly written in different languages on different platforms, then the case for putting more of the validation into the database layer is strengthened. The liklihood of two or more applications, written by different programmers, performing identical validation is fairly remote. Best do it in one place.</p> <p>The Jeff Atwoods of this world would suggest that you write a web service that all the apps use to communicate with. The web service performs the data validation. Doing this allows the database to remain a dumb storage container, thus enabling you to switch database engines. In reality you rarely change database engines (unless you started out with Microsoft Access!). If you are writing web services purely to centralise your data validation then I thnk you are going overboard.</p> http://stackoverflow.com/questions/463874/how-do-you-tap-into-myob-from-a-net-app/463959#463959 2 Answer by Mike Thompson for How do you tap into MYOB from a .NET app? Mike Thompson 2009-01-21T02:52:37Z 2009-01-21T02:52:37Z <p>There is an ODBC driver available <a href="http://myob.com/servlet/Satellite?cid=1131944311941&amp;pagename=MYOB%2FPage%2FPersonalisedContentPageWithNav&amp;site=en_AU&amp;c=Page" rel="nofollow">here</a>. There maybe some limitations to it, however. Both MYOB &amp; QuickBooks make it difficult to extract all the data -- they attempt to lock you in.</p> http://stackoverflow.com/questions/459614/what-is-the-best-password-encryption-decryption-library-to-use-with-perl 2 What is the best password encryption & decryption library to use with Perl? Mike Thompson 2009-01-19T23:27:42Z 2009-01-20T20:00:01Z <p>I am writing a perl script that manipulates password protected zip files. Consequently I need to store &amp; retrieve passwords to do this. I have three options for storing the password:</p> <ol> <li>Store in plain text. Before you jump in, I have pretty much ruled out this option.</li> <li>Use a simple password munger to prevent casual/accidental access (even by the DBAs)</li> <li>Use a proper encryption/decryption library, such as Blowfish or AES.</li> </ol> <p>Whatever I choose must run in Perl, under Windows and be easy to use.</p> <p>Any suggestions? </p> http://stackoverflow.com/questions/456124/msdn-windows-license-still-works-after-subscription/456161#456161 2 Answer by Mike Thompson for MSDN Windows license still works after subscription Mike Thompson 2009-01-18T23:57:52Z 2009-01-18T23:57:52Z <p>You still have access to the product keys of products that were released while your MSDN subscription was active. </p> <p>Our company had an MSDN Operating Systems edition. When that subscripion ended we purchased MSDN Universal (or Premium or whatever they call it this week). When we logged on to MSDN we could select either the Operating System account (which had expired) or the Universal account. We could still download from the OS account, but only those products released during the subscription period. You are still bound by the licence, so you wtill have caps on how many installs you have etc, but the products are still active.</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/456136#456136 0 Answer by Mike Thompson for What dead programming languages do you know? Mike Thompson 2009-01-18T23:40:13Z 2009-01-18T23:40:13Z <p>If you want one of the more unusual languages, try the assembly langauge used by the microprocessor was used in the HP 41C calculator! This was a state of the art programmable calculator released in 1979. It had it's own reversh polish (RPN) programming language. However, under the hood was a microprocessor that could be accessed with special hardware attached. </p> <p>Hackers eventually discovered how to dump the internal ROMs of the calculator and decode its instruction set. It used 56 bit registers and most of the instructions were 10 bites in length. And get this, the return stack only had 4 levels! </p> <p>Eventually HP released thr source code to the calculator (called the NOMAS listings - NOt MAnufacturer Supported) and this enabled a flood of software to be written.</p> <p>Those were the days!</p> http://stackoverflow.com/questions/456006/what-was-your-first-non-required-computer-book/456020#456020 0 Answer by Mike Thompson for What was your first non-required computer book? Mike Thompson 2009-01-18T22:19:15Z 2009-01-18T22:19:15Z <p>I still have my Rodney Zaks book on Z80 programming. It is very well thumbed and the spine is falling to pieces. </p> <p>I also have my original K&amp;R C programming book, which is also very well read.</p> http://stackoverflow.com/questions/437432/is-there-a-way-to-find-all-the-functions-exposed-by-a-dll/438623#438623 6 Answer by Mike Thompson for Is there a way to find all the functions exposed by a dll Mike Thompson 2009-01-13T11:01:42Z 2009-01-13T20:17:07Z <p>There are three distinct types of DLLs under Windows:</p> <ol> <li><p>Classic DLLs that expose every available function in the exports table of the DLL. You can use dumpbin.exe or depends.exe from Visual Studio, or the free <a href="http://www.dependencywalker.com/" rel="nofollow">dependency walker</a> to examine these types. Matt Pietrek wrote many articles and utilities for digging into Win32 PE files. Have a look at his classic <a href="http://msdn.microsoft.com/en-us/magazine/cc301805.aspx" rel="nofollow">MSDN Magazine articles</a>. C++ DLLs that contain exported classes will export every method in the class. Unfortunately it exports the mangled names, so the output of dumpbin is virtually unreadable. You will need to use a program like vc++_filt.exe to demangle the output.</p></li> <li><p>COM DLLs that expose COM objects. These DLLs expose a handful of regular exported functions (DllRegisterServer etc) that enable the COM system to instantiate objects. There are many utilities that can look at these DLLs, but unless they have embedded type libraries they can be quite difficult to examine. <a href="http://www.4developers.com/" rel="nofollow">4Developers</a> have a number of good COM/ActiveX tools</p></li> <li><p>.NET DLLs that contain .NET assemblies. Typiically you would use a tool like <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.NET Reflector</a> to dig into these.</p></li> </ol> http://stackoverflow.com/questions/437816/behaviour-of-printf-when-printing-a-d-without-supplying-variable-name/437847#437847 5 Answer by Mike Thompson for Behaviour of printf when printing a %d without supplying variable name. Mike Thompson 2009-01-13T03:13:24Z 2009-01-13T10:42:46Z <p>You say that "surprisingly the program compiles". Actually, it is not surprising at all. C &amp; C++ allow for functions to have variable argument lists. The definition for printf is something like this:</p> <p>int printf(char*, ...);</p> <p>The "..." signifies that there are zero or more optional arguments to the function. In fact, one of the main reasons C has optional arguments is to support the printf &amp; scanf family of functions.</p> <p>C has no special knowledge of the printf function. In your example:</p> <pre><code>printf("%d"); </code></pre> <p>The compiler doesn't analyse the format string and determine that an integer argument is missing. This is perfectly legal C code. The fact that you are missing an argument is a semantic issue that only appears at runtime. The printf function will assume that you have supplied the argument and go looking for it on the stack. It will pick up whatever happens to be on there. It just happens that in your special case it is printing the right thing, but this is an exception. In general you will get garbage data. This behaviour will vary from compiler to compiler and will also change depending on what compile options you use; if you switch on compiler optimisation you will likely get different results.</p> <p>As pointed out in one of the comments to my answer, some compilers have "lint" like capabilities that can actually detect erroneous printf/scanf calls. This involves the compiler parsing the format string and determining the number of extra arguments expected. This is very special compiler behaviour and will not detect errors in the general case. i.e. if you write your own "printf_better" function which has the same signature as printf, the compiler will not detect if any arguments are missing. </p> http://stackoverflow.com/questions/437929/are-there-localized-programing-language-syntax/437963#437963 0 Answer by Mike Thompson for Are there 'localized' programing language syntax? Mike Thompson 2009-01-13T04:33:07Z 2009-01-13T04:33:07Z <p>I remember Joel Spolsky talking about the original macro language in Excel (pre VBA). I gather that it was localised to use the current language settings. So, the macros would appear in Spanish when the spreadsheet was opened on a PC with Spanish Windows. The same spreadsheet, when opened on an English Windows PC would show the macro in Engligh. This worked because the macro was tokenised (partially compiled) -- it wasn't storing the macro as text, so it was fairly easy to display different strings for the same token.</p> <p>When it comes to languages where there is a separate compilation process to convert the source code into compiled code I know of no languages other than English. In C &amp; C++ you could probably use the preprocessor to fake it:</p> <pre><code>#define if si #define verdad true </code></pre> <p>However you would have to be very careful that the preprocessor doesn't accidentally substitute more than you intend.</p> <p>The substitution technique was often used by assembly language programmers to add extra CPU instructions that the assembler was unaware of. For example, when a new version of a microprocessor comes out that contains extra instruction the existing assemblers would choke when the user tried to use the new instructions (because the author of the assembler had not yet updated it to recognise the new instructions). Using the macro facilities available in most assemblers it is fairly straightforward to write a macro to emit the correct stream of bytes for the new instruction.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/434439#434439 -1 Answer by Mike Thompson for Great programming quotes Mike Thompson 2009-01-12T04:30:25Z 2009-01-12T04:30:25Z <p>In Australia there used to be a drink driving advertising campaign on TV with the following message:</p> <p>"If you drink &amp; drive, you're a bloddy idiot!"</p> <p>As programmers, we modified it to:</p> <p>"If you can drink &amp; program, you're a bloddy genius!"</p> <p>Actually the quote should be slightly rephrased:</p> <p>"If you can drink &amp; program, without rewriting the whole thing in the morning, you're a bloddy genius!"</p> http://stackoverflow.com/questions/422830/structure-of-a-c-object-in-memory-vs-a-struct/422953#422953 0 Answer by Mike Thompson for Structure of a C++ Object in Memory Vs a Struct Mike Thompson 2009-01-08T01:52:40Z 2009-01-08T01:52:40Z <p>Classes &amp; structs in C++ are the equivalent, except that all members of a struct are public by default (class members are private by default). This ensures that compiling legacy C code in a C++ compiler will work as expected.</p> <p>There is nothing stopping you from using all the fancy C++ features in a struct:</p> <pre><code>struct ReallyAClass { ReallyAClass(); virtual !ReallAClass(); /// etc etc etc }; </code></pre> http://stackoverflow.com/questions/179099/buildprocess-for-activex-com-vb6-enterprise-projects/373828#373828 0 Answer by Mike Thompson for Buildprocess for ActiveX / COM / VB6 enterprise projects Mike Thompson 2008-12-17T06:46:49Z 2008-12-17T06:46:49Z <p>As Mike Spross suggests, you should use Binary Compatibility. You can (and should) build on a clean machine. You do this by keeping a copy of the current production binaries (ActiveX DLLs &amp; OCXs) in a "compatible" directory in your source control system. All the projects should refer to this copy when you select Binary Comatibility. For example, put the new binaries into ...\Release and the compatible binaries live in ...\Compatible. When the new version goes into production you copy everything from ...\Release to ...\Compatible. In this way you keep the compatibility going from one release to the next.</p> <p>When in Binary Compatibility mode, VB will create a new IID if you add a new method to your class. Remember that in COM an interface is immutable. If you make the slightest change to an interface, you are creating something new. VB observes this rule of COM, but uses some smoke &amp; mirrors to prevent breaking older client code. Because VB "knows" that the new interface is a 100% superset of the old interface (this is what Binary Compatibility ensures), it can use "interface forwarding". Interface forwarding merely redirects all references from the old interface to the new interface. Without this trick, you would have to create new versions (with different names &amp; CLSIDs) of any ActiveX component you modify. DLL Hell would turn into DLL Armargeddon!</p> <p>VB stores all the interface forwarding info in the resources of your component. When you register the component it writes all the interface IIDs to HKCR\Interface. The older interfaces will have forwarding info in them. Only the "real" interface will refer to an actual coclass.</p> http://stackoverflow.com/questions/1230618/generic-method-overloading-compilation-error-in-vb Comment by Mike Thompson on Generic method overloading compilation error in VB Mike Thompson 2009-09-03T07:10:17Z 2009-09-03T07:10:17Z Jeff, thanks for restoring my original generic code. http://stackoverflow.com/questions/1230618/generic-method-overloading-compilation-error-in-vb/1367073#1367073 Comment by Mike Thompson on Generic method overloading compilation error in VB Mike Thompson 2009-09-03T04:33:24Z 2009-09-03T04:33:24Z This gets around the compiler error, but the call to SetValue inside Test2 resolves to the wrong overload. Good try though! I thought the problem was solved when it compiled correctly. http://stackoverflow.com/questions/385714/why-use-trycast-instead-of-directcast/385727#385727 Comment by Mike Thompson on Why use TryCast instead of Directcast ? Mike Thompson 2009-08-20T03:02:28Z 2009-08-20T03:02:28Z However, TryCast is not identical to C#'s &quot;as&quot;. TryCast only works with reference types, whereas &quot;as&quot; handles value types. See my question on this issue (<a href="http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq" rel="nofollow" title="differences between vb trycast and c as operator when using linq">stackoverflow.com/questions/1297297/&hellip;</a>) http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq/1297488#1297488 Comment by Mike Thompson on Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T02:34:26Z 2009-08-19T02:34:26Z Both of these give me a &quot;Unsupported overload used for query operator 'DefaultIfEmpty'&quot; error. Is something missing? http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq/1297441#1297441 Comment by Mike Thompson on Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T02:31:23Z 2009-08-19T02:31:23Z Unfortunately, this does not have the correct query plan (according to LINQPad). It retrieves all the rows and performs the Max aggregation in memory. http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq Comment by Mike Thompson on Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T01:33:40Z 2009-08-19T01:33:40Z Yes, this is LINQ to SQL. If I use DirectCast I get a compile error. Only CType works. http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq/1297377#1297377 Comment by Mike Thompson on Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T01:29:01Z 2009-08-19T01:29:01Z Correction. Unfortunately, this does not work. It thinks the result is Integer, not Integer? When the query returns no rows I get an InvalidCast exception. http://stackoverflow.com/questions/1297297/differences-between-vb-trycast-and-c-as-operator-when-using-linq/1297377#1297377 Comment by Mike Thompson on Differences between VB TryCast and C# "as" operator when using LINQ Mike Thompson 2009-08-19T01:26:40Z 2009-08-19T01:26:40Z So simple! I thought I played around with doing an outer cast, but I didn't quite hit upon the right syntax. http://stackoverflow.com/questions/1242567/using-hardlinks-when-cloning-a-mercurial-repository-under-windows Comment by Mike Thompson on Using hardlinks when cloning a Mercurial repository under Windows Mike Thompson 2009-08-07T12:00:59Z 2009-08-07T12:00:59Z I am trying to improve the performance of cloning a repository. Since hardlinks only increase the reference count of a file, cloning a repository becomes a fairly cheap operation in terms of disk space &amp; creation time. http://stackoverflow.com/questions/1230618/generic-method-overloading-compilation-error-in-vb Comment by Mike Thompson on Generic method overloading compilation error in VB Mike Thompson 2009-08-05T20:59:15Z 2009-08-05T20:59:15Z I have tried it in VS2005 &amp; VS2010 Beta 1 with the same result. I assume VS2008 will be the same. http://stackoverflow.com/questions/1010671/calling-a-method-on-a-generic-base-class-created-with-activator-createinstance/1010689#1010689 Comment by Mike Thompson on Calling a method on a generic base class created with Activator.CreateInstance Mike Thompson 2009-06-18T12:25:36Z 2009-06-18T12:25:36Z In my real code the Foo method is generic (it instantiates a T object -- it does not have any parameters of T or return a T). So the interface technique works even though Foo is generic. http://stackoverflow.com/questions/1010671/calling-a-method-on-a-generic-base-class-created-with-activator-createinstance/1010689#1010689 Comment by Mike Thompson on Calling a method on a generic base class created with Activator.CreateInstance Mike Thompson 2009-06-18T04:26:02Z 2009-06-18T04:26:02Z I thought of interfaces, but didn't mention this is my question. It might be the most elegant solution. http://stackoverflow.com/questions/518649/how-to-debug-stored-procedures-in-sybase-ase/540244#540244 Comment by Mike Thompson on How to debug stored procedures in Sybase ASE? Mike Thompson 2009-02-13T02:34:10Z 2009-02-13T02:34:10Z Alas, I need to debug some existing procedures to determine if they will break when new functionality is implemented elsewhere in the system. http://stackoverflow.com/questions/514447/whats-your-favorite-dictionary-the-one-with-the-words Comment by Mike Thompson on What's your favorite dictionary (the one with the words)? Mike Thompson 2009-02-05T04:18:08Z 2009-02-05T04:18:08Z Correct spelling &amp; usage should be a goal of all programmers. http://stackoverflow.com/questions/505780/how-to-get-the-next-record-in-sql-table/505819#505819 Comment by Mike Thompson on How to get the next record in SQL table Mike Thompson 2009-02-03T02:21:38Z 2009-02-03T02:21:38Z You can probably optimise the innermost where clause to restrict which rows in Q1 are examined. You know that the prior row will be at most 2 or 3 days earlier.