User Mike Spross - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:39:20Z http://stackoverflow.com/feeds/user/17862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1777962#1777962 12 Answer by Mike Spross for Java Exceptions, What to catch and what not to? Mike Spross 2009-11-22T06:05:19Z 2009-12-09T05:07:00Z <p><strong>Short answer</strong></p> <p>Catch exceptions that you can deal with then and there, re-throw what you can't.</p> <p><strong>Long answer</strong></p> <p>It's called <em>exception-handling</em> code for a reason: whenever you are tempted to write a <code>catch</code> block, you need to have a good reason to catch the exception in the first place. A <code>catch</code> block is stating your intent to catch the exception, and then <em>do something about it</em>. Examples of <em>doing something about it</em> include, but are not limited to:</p> <ul> <li><p>Retrying the operation that threw the exception. This can make sense in the case of <code>IOException</code>'s and other issues that may be temporary (i.e. a network error in the middle of trying to upload a file to a server. Maybe your code should retry the upload a few times).</p></li> <li><p>Logging the exception. Yes, logging counts as doing something. You might also want to re-throw the original exception after logging it so that other code still has a chance to deal with the exception, but that depends on the situation.</p></li> <li><p>Wrapping the exception in another exception that is more appropriate for your class's interface. For example, if you have a <code>FileUploader</code> class, you could wrap <code>IOException</code>'s in a more generic <code>UploadFailedException</code> so that classes using your class don't have to have detailed knowledge of how your upload code works (the fact that it throws an <code>IOException</code> is technically an implementation detail).</p></li> </ul> <p>If the code can't reasonably do anything about the problem at the point where it occurs, then you shouldn't catch it at all. </p> <p>Unfortunately, such hard-and-fast rules never work 100% of the time. Sometimes, a third-party library you are using will throw checked exceptions that you really don't care about or which will never actually happen. In these cases, you can get away with using an empty <code>catch</code> block that doesn't run any code, but this is not a recommended way to deal with exceptions. At the very least, you should add a comment explaining why you are ignoring the exception (but as <a href="http://stackoverflow.com/users/152578/cperkins">CPerkins</a> notes in the comments, "never say never". You may want to actually log these kinds of "never-going-to-happen" exceptions, so just in case such an exception <em>does</em> happen, you are aware of it and can investigate further).</p> <p>Still, the general rule is, if the method you are in can't do something reasonable with an exception (log it, rethrow it, retry the operation, etc.) then you shouldn't write a <code>catch</code> block at all. Let the calling method deal with the exception. If you are dealing with checked exceptions, add the checked exception to the <code>throws</code> clause of your method, which tells the compiler to pass the exception upwards to the calling method, which may be better suited to handle the error (the calling method may have more context, so it might have a better idea of how to handle the exception).</p> <p>Usually, it is good to put a <code>try...catch</code> in your <code>main</code> method, which will catch any exceptions that your code couldn't deal with, and report this information to the user and exit the application gracefully.</p> <p><strong>And finally, don't forget about <code>finally</code></strong></p> <p>Also keep in mind that even if you don't write a <code>catch</code> block, you might still need to write a <code>finally</code> block, if you need clean-up code to run regardless of whether the operation you are trying to perform throws an exception or not. A common example is opening up a file in the <code>try</code> block: you'll still want to close the file, even if an exception occurs, and even if your method isn't going to catch the exception. In fact, another common rule of thumb that you might see in tutorials and books is that <code>try...finally</code> blocks should be more common that <code>try...catch</code> blocks in your code, precisely because <code>catch</code> blocks should only be written when you can actually handle the exception, but <code>finally</code> blocks are needed whenever your code needs to clean up after itself.</p> http://stackoverflow.com/questions/147070/are-we-as-programmers-becoming-too-dependent-on-our-ides 25 Are we as programmers becoming too dependent on our IDEs? Mike Spross 2008-09-29T00:25:27Z 2009-11-22T15:00:37Z <p>For a long time, the only IDE I knew was the VB6 IDE, which is fairly outdated (ca. 1998) and not very feature-rich (unless you purchase third-party add-ons). You can set breakpoints and watches and there are other (now common-place) amenities, such as Intellisense. </p> <p>So, when I saw Eclipse for the first time, I was amazed at how much the IDE could do for you (<code>Generate Getters and Setters</code>, the quick-fix feature, the <code>Refactoring</code> menu, etc.). Same thing when we moved to Visual Studio and I saw all the auto-generated Form Designer code for the first time. </p> <p>These extras are great for productivity and just plain Getting Things Done, but I have to wonder, are we becoming too reliant on IDE's? How many programmers actually understand the rationale for the refactoring suggestions their IDE's give them? Do they need to understand why the IDE is suggesting they make a particular change to the code they just wrote?</p> <p>I just wonder, especially as more and more productivity features get crammed into IDE's, how much thinking future programmers will actually be doing if the IDE starts shielding them from having to actually think things through before they code, instead of using the IDE as a crutch (i.e. "I can write crap code, because the IDE will refactor it for me").</p> <p>Sometimes I find it very liberating to just fire up a text editor and code in that for awhile, to prove to myself that I still actually know the language I'm coding in.</p> <p>What are your thoughts on this? Are super-friendly IDE's jammed-packed with productivity features ultimately harming programmers by hiding too many details of the language and shielding them from making real design decisions?</p> http://stackoverflow.com/questions/1030361/does-visual-source-safe-really-lack-renaming-functionality/1030401#1030401 4 Answer by Mike Spross for Does Visual Source Safe really lack renaming functionality? Mike Spross 2009-06-23T02:39:02Z 2009-11-12T06:30:22Z <p>It's possible to do this in SourceSafe, but it requires a bit of manual intervention:</p> <ol> <li>First, make sure the file you want to rename is checked in.</li> <li>In SourceSafe, right-click the file and select <code>Rename</code> from the menu (or alternatively, simply press F2), then rename the file. </li> <li>This only renames the file within SourceSafe. You will have to check out the renamed file to your working folder and then delete the original file from your working copy to complete the rename.</li> </ol> <p>If you view the file's history (right-click, then <code>Show History</code>, or altenatively, <code>Ctrl-H</code>), you will see that all of its history is intact. Note, however, that SourceSafe will refer to the file by its new name in all of the history entries for the file. The actual rename is tracked at the project folder level. If you view the history of the folder that contains the renamed file, you'll see a history item indicating that the file was renamed from <code>oldname</code> to <code>newname</code>.</p> <p><hr></p> <p><strong>Addendum: A note on retrieving older versions of renamed files from history</strong></p> <p>Joe White commented on <a href="http://stackoverflow.com/questions/1030361/does-visual-source-safe-really-lack-renaming-functionality/1030394#1030394">this answer</a> that SourceSafe doesn't honor the original filename when you do a <code>Get</code> on an older version of a renamed file. This is true, if you are getting the older version from the File History viewer.</p> <p>However, if you do a <code>Get</code> of an older version of your code (before the rename) from the <em>parent folder</em>'s history viewer, SourceSafe will correctly use the original filename when it puts the files in your working folder.</p> <p>The reason for this behavior goes back to the fact that SourceSafe tracks renames at the parent folder level and not at the per-file level. </p> http://stackoverflow.com/questions/179099/buildprocess-for-activex-com-vb6-enterprise-projects/179655#179655 5 Answer by Mike Spross for Buildprocess for ActiveX / COM / VB6 enterprise projects Mike Spross 2008-10-07T18:01:52Z 2009-11-12T06:17:22Z <p>You can tell VB6 to reuse GUID's (IID's CLSID's LIBID's etc.) by changing the compatbility setting of the project to from "No Compatbility" to "Binary Compatibility". You can find these settings under Project-><em>Your-Project</em> Properties. The compatibility setting is on the Component tab of the Project Properties window. There are three choices:</p> <ul> <li>No Compatibility </li> <li>Project Compatibility </li> <li>Binary Compatibility</li> </ul> <p>Here's what <a href="http://support.microsoft.com/kb/161137" rel="nofollow">MSDN</a> says about them:</p> <blockquote> <p><h3>No Compatibility</h3><br/> With this setting, no compatibility is enforced. Visual Basic creates new Interface IDs and Class IDs every time you build or compile your project. Each version built can only be used with applications created to work with that specific build of the component.</p> <p><h3>Project Compatibility</h3><br/></p> <p>With this setting, you can make your project compatible to a specific component project. While new type library information is generated, the type library identifier is maintained so that test projects can still refer to the component project. This setting is for maintaining compatibility during testing. Therefore, once the component is released, it behaves the same as the No Compatibility setting.</p> <p><h3>Binary Compatibility</h3><br/></p> <p>When you compile your project, Visual Basic only creates new Class and Interface IDs when necessary. It preserves the class and interface IDs from the previous version(s) so that programs compiled using an earlier version will continue to work. If you are making a change that will result in an incompatible version, Visual Basic will warn you. If you want to maintain compatibility with older, released versions of an ActiveX component, this is the setting you need to use.</p> </blockquote> <p>It sounds like you are currently compiling with <strong>No Compatibility</strong>. As the MSDN article states, you need to use <strong>Binary Compatibility</strong> to keep newer versions of your components compatible with older versions. You can do this now by doing the following:</p> <ul> <li><p>Compile each project once with <strong>No Compatibility</strong></p></li> <li><p>Save these "clean" versions to a folder that people doing the builds can easily access, such as network share, or, put them in source control.</p></li> <li><p>Go back and change all the projects to "Binary Compatibility" and point the "Compatible File" to the corresponding version that you just saved on the network/in source control (do not point the compatible file to the same path that you are compiling the project to. The compatible file should be a separate copy of the original component that won't change. It only exists so that VB can copy the ID's from that file into your project when you recompile it).</p></li> </ul> <p>Every time you recompile your projects, they will reuse the GUID's from the compatible (original) versions of the components.</p> <p>EDIT: As Joe mentioned in the comments, you also have to recognize when your class interfaces have changed (that is, when an interface changes enough that you can longer maintain binary compatibility with the previous versions). When this occurs, you want to make a clean break from the previous versions of the components: recompile a new "clean" version (i.e. with No Compatibility) and use that new version as your compatible file in future builds. However, it's important to note you should only start over again when your class interfaces (properties and methods) change. In fact, VB will warn you when a project is no longer compatible with the previous version of the component. </p> <h3>If you want to live on the edge...</h3> <p><br/> Where I work, we tend to (ab)use No Compatibility on most of our projects, even though it's not really the correct way to do things (you <em>should</em> use Binary Compatibility). At our company it was acquired laziness, because we have an automated build tool that compiles all of our projects for us, and one of the main features of the tool is that is can automatically repair broken project references between projects. Since the build tool fixes this for us, there is less incentive to use Binary Compatibility.</p> <h3>Why Binary Compatibility is better (or...why you shouldn't do what we do)</h3> <p><br/> A few reasons why Binary Compatibility is usually the better choice:</p> <ul> <li><p>Microsoft says so</p></li> <li><p>If all your components are binary compatible with previous releases of your software, you can easily recompile a single component and redistribute it to your customers. This makes bugfixes/patches easier to deploy. If you use No Compatibility on your projects, you will have to recompile and redistribute your entire application every time a small patch needs to go out, because the newer components (probably) won't work with the older components.</p></li> <li><p>You are doing your part to uphold the COM standard: In COM, class ID's and interface ID's are supposed to uniquely identify a class or interface. If your classes and/or interfaces haven't changed between builds, then there is no reason to generate new ID's for those classes and interfaces (in fact, then the same class would have multiple ID's). Binary Compatiblity allows you to maintain the same ID's across builds, which means you are being a good citizen and following COM conventions.</p></li> <li><p>Less Registry noise. If you are always deploying new components to customers that aren't binary compatible with old versions, each new version will add new information to the registry. Each new interface and class ID has to registered, among other things. If you keep everything Binary Compatible, then an installer only has to add the registry keys in one place, since your class ID's and interface ID's won't change.</p></li> <li><p>If you are exposing a public API or component that other third party applications are consuming, you will definitely want to use Binary Compatibility so that you don't break third party software that depends on your code.</p></li> </ul> http://stackoverflow.com/questions/1622973/infopath-form-registration-and-case-sensitive-file-path-strangeness-whats-going 0 InfoPath Form Registration and Case-Sensitive File Path Strangeness: What's going on here? Mike Spross 2009-10-26T03:46:03Z 2009-11-05T19:31:45Z <p>Recently I had to troubleshoot a very strange issue with a fully-trusted InfoPath 2007 form at a customer site. The form is part of a records management application and users launch the form from within the application. </p> <p>However, because the form is subject to frequent updates, we store a "master" copy of the form file on the customer's server. Whenever a user launches the form from our application, our software copies the form .xsn file locally to the Application Data folder, registers the local copy, and then launches it. Note that we don't use certificates, which is why we need to programmatically register the form each time it is launched.</p> <p>This customer was having trouble launching the form from our application on one of their workstations. The logs indicated that the form couldn't be registered on this particular workstation (the form gets registered and opens fine on other workstations, all of which are running Windows XP).</p> <p>Our software uses the <code>InfoPath.ExternalApplication</code> class to register and launch the .xsn file. The following VBScript reproduced the issue on the problem workstation:</p> <pre><code>Set infoPathApp = CreateObject("InfoPath.ExternalApplication") 'This line produces a pretty generic "Form template could not be registered" error,' 'with absolutely no details as to *why* it could not be registered.' infoPathApp.RegisterSolution "C:\Documents And Settings\All Users\Application Data\MyCompanysApp\MyCompanysInfoPathForm.xsn", "overwrite" </code></pre> <p>The <strong>really strange thing that I cannot for the life of me understand</strong> is that if I change </p> <pre><code>"C:\Documents And Settings\All Users\Application Data\MyCompanysApp\MyCompanysInfoPathForm.xsn" </code></pre> <p>to this:</p> <pre><code>"C:\Documents And Settings\All USers\Application Data\MyCompanysApp\MyCompanysInfoPathForm.xsn" </code></pre> <p>Then the form registers fine and the user can then open the form without any issues! Note that the <strong>only</strong> difference between the working and non-working code is that I changed "All Users" to "All USers" (capitialized the first "S" in "Users").</p> <p><strong>What the heck is going on here?</strong> Why would the casing of the filepath matter at all to InfoPath? What's more, why would the odd-cased version (with "All USers") work while the (obviously more correct "All Users") doesn't? </p> <p>Also, for what it's worth, the "All Users" folder does appear as "All Users" and not "All USers" in Windows Explorer and in the file properties.</p> <p><strong>Update</strong></p> <p>I can only assume that <em>something</em> is different between the two workstations, but I'm at a loss as to what to look for in terms of differences. I realize I haven't provided a lot of details in the question (because I really have no idea what could be causing this behavior), but if anyone has any clues or possible causes, I'd be happy to hear them.</p> http://stackoverflow.com/questions/172942/implementation-of-isupporterrorinfo-what-does-it-mean/173220#173220 3 Answer by Mike Spross for Implementation of ISupportErrorInfo - what does it mean? Mike Spross 2008-10-06T04:40:21Z 2009-11-03T18:06:49Z <p>My understanding of it (based on some related MSDN pages) is that by implementing <code>ISupportErrorInfo</code>, you are indicating that one or more interfaces on your class returns error information by calling <code>SetErrorInfo</code>, as opposed to just returning a failure <code>HRESULT</code>. </p> <p>To that end, your implementation of <code>ISuportErrorInfo::InterfaceSupportsErrorInfo</code> should return <code>S_OK</code> only for those interfaces on your class that actually use <code>SetErrorInfo</code> to return error information to the caller, and <strong>only</strong> those interfaces.</p> <p>For example, say you have a class that implements an interface you wrote called <code>IFoo</code> that has a <code>DoSomething</code> method. If someone else creates an instance of your class and calls <code>IFoo::DoSomething</code>, they are supposed to do the following if <code>DoSomething</code> returns a failure <code>HRESULT</code> (paraphrasing from various MSDN pages, but I started from here: <a href="http://msdn.microsoft.com/en-us/library/ms221510.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms221510.aspx</a>):</p> <ul> <li><p>Call <code>QueryInterface</code> on the <code>IFoo</code> pointer to get the <code>ISupportErrorInfo</code> interface for the object that is implementing <code>IFoo</code></p></li> <li><p>If the called object doesn't implement <code>ISupportErrorInfo</code>, then the caller will have to handle the error based on the <code>HRESULT</code> value, or pass it up the call stack.</p></li> <li><p>If the called object does implement <code>ISupportErrorInfo</code>, then the caller is supposed to <code>QueryInterface</code> for a <code>ISupportErrorInfo</code> pointer and call <code>ISupportErrorInfo::InterfaceSupportsErrorInfo</code>, passing in a <code>REFIID</code> for the interface that returned the error. In this case, the <code>DoSomething</code> method of the <code>IFoo</code> interface returned an error, so you would pass <code>REFIID_IFoo</code> (assuming it's defined) to <code>InterfaceSupportsErrorInfo</code>.</p></li> <li><p>If <code>InterfaceSupportsErrorInfo</code> returns <code>S_OK</code>, then the caller knows at this point that it can retrieve more detailed information about the error by calling <code>GetErrorInfo</code>. If <code>InterfaceSupportsErrorInfo</code> returns <code>S_FALSE</code>, the caller can assume the called interface doesn't supply detailed error information, and will have to rely on the returned HRESULT to figure out what happened.</p></li> </ul> <p>The reason for this somewhat confusing/convoluted error-handling API seems to be for flexibility (as far I as I can tell anyway. This <em>is</em> COM after all ;). With this design, a class can support multiple interfaces, but not every interface is required to use <code>SetErrorInfo</code> to return error information from its methods. You can have certain, select interfaces on your class return detailed error information via <code>SetErrorInfo</code>, while other interfaces can continue to use normal <code>HRESULT</code>s to indicate errors. </p> <p>In summary, the <code>ISupportErrorInfo</code> interface is a way to inform the calling code that at least one of the interfaces your class implements can return detailed error information, and the <code>InterfaceSupportsErrorInfo</code> method tells the caller whether a given interface is one of those interfaces. If so, then the caller can retrieve the detailed error information by calling <code>GetErrorInfo</code>.</p> http://stackoverflow.com/questions/547903/self-inspection-of-vb6-udts/550059#550059 14 Answer by Mike Spross for Self Inspection of VB6 UDTs Mike Spross 2009-02-15T00:31:08Z 2009-10-31T11:57:39Z <p>Contrary to what others have said, it IS possible to get run-time type information for UDT's in VB6 (although it is not a built-in language feature). Microsoft's <a href="http://msdn.microsoft.com/en-us/magazine/bb985086.aspx" rel="nofollow">TypeLib Information Object Library</a> (tlbinf32.dll) allows you to programmatically inspect COM type information at run-time. You should already have this component if you have Visual Studio installed: to add it to an existing VB6 project, go to <em>Project->References</em> and check the entry labeled "TypeLib Information." Note that you will have to distribute and register tlbinf32.dll in your application's setup program.</p> <p>You can inspect UDT instances using the TypeLib Information component at run-time, as long as your UDT's are declared <code>Public</code> and are defined within a <code>Public</code> class. This is necessary in order to make VB6 generate COM-compatible type information for your UDT's (which can then be enumerated with various classes in the TypeLib Information component). The easiest way to meet this requirement would be to put all your UDT's into a public <code>UserTypes</code> class that will be compiled into an ActiveX DLL or ActiveX EXE.</p> <h2>Summary of a working example</h2> <p>This example contains three parts:</p> <ul> <li><strong>Part 1</strong>: Creating an ActiveX DLL project that will contain all the public UDT declarations</li> <li><strong>Part 2</strong>: Creating an example <code>PrintUDT</code> method to demonstrate how you can enumerate the fields of a UDT instance</li> <li><strong>Part 3</strong>: Creating a custom iterator class that allows you easily iterate through the fields of any public UDT and get field names and values.</li> </ul> <p><hr /></p> <p><strong>The working example</strong></p> <h3>Part 1: The ActiveX DLL</h3> <p>As I already mentioned, you need to make your UDT's public-accessible in order to enumerate them using the TypeLib Information component. The only way to accomplish this is to put your UDT's into a public class inside an ActiveX DLL or ActiveX EXE project. Other projects in your application that need to access your UDT's will then reference this new component.</p> <p>To follow along with this example, start by creating a new ActiveX DLL project and name it <code>UDTLibrary</code>.</p> <p>Next, rename the <code>Class1</code> class module (this is added by default by the IDE) to <code>UserTypes</code> and add two user-defined types to the class, <code>Person</code> and <code>Animal</code>:</p> <pre><code>' UserTypes.cls ' Option Explicit Public Type Person FirstName As String LastName As String BirthDate As Date End Type Public Type Animal Genus As String Species As String NumberOfLegs As Long End Type </code></pre> <p><strong>Listing 1: <code>UserTypes.cls</code> acts as a container for our UDT's</strong></p> <p>Next, change the <em>Instancing</em> property for the <code>UserTypes</code> class to "2-PublicNotCreatable". There is no reason for anyone to instantiate the <code>UserTypes</code> class directly, because it's simply acting as a public container for our UDT's.</p> <p>Finally, make sure the <code>Project Startup Object</code> (under <em>Project->Properties</em>) is set to to "(None)" and compile the project. You should now have a new file called <code>UDTLibrary.dll</code>.</p> <h3>Part 2: Enumerating UDT Type Information</h3> <p>Now it's time to demonstrate how we can use TypeLib Object Library to implement a <code>PrintUDT</code> method.</p> <p>First, start by creating a new Standard EXE project and call it whatever you like. Add a reference to the file <code>UDTLibrary.dll</code> that was created in Part 1. Since I just want to demonstrate how this works, we will use the Immediate window to test the code we will write.</p> <p>Create a new Module, name it <code>UDTUtils</code> and add the following code to it:</p> <pre><code>'UDTUtils.bas' Option Explicit Public Sub PrintUDT(ByVal someUDT As Variant) ' Make sure we have a UDT and not something else... ' If VarType(someUDT) &lt;&gt; vbUserDefinedType Then Err.Raise 5, , "Parameter passed to PrintUDT is not an instance of a user-defined type." End If ' Get the type information for the UDT ' ' (in COM parlance, a VB6 UDT is also known as VT_RECORD, Record, or struct...) ' Dim ri As RecordInfo Set ri = TLI.TypeInfoFromRecordVariant(someUDT) 'If something went wrong, ri will be Nothing' If ri Is Nothing Then Err.Raise 5, , "Error retrieving RecordInfo for type '" &amp; TypeName(someUDT) &amp; "'" Else ' Iterate through each field (member) of the UDT ' ' and print the out the field name and value ' Dim member As MemberInfo For Each member In ri.Members 'TLI.RecordField allows us to get/set UDT fields: ' ' ' ' * to get a fied: myVar = TLI.RecordField(someUDT, fieldName) ' ' * to set a field TLI.RecordField(someUDT, fieldName) = newValue ' ' ' Dim memberVal As Variant memberVal = TLI.RecordField(someUDT, member.Name) Debug.Print member.Name &amp; " : " &amp; memberVal Next End If End Sub Public Sub TestPrintUDT() 'Create a person instance and print it out...' Dim p As Person p.FirstName = "John" p.LastName = "Doe" p.BirthDate = #1/1/1950# PrintUDT p 'Create an animal instance and print it out...' Dim a As Animal a.Genus = "Canus" a.Species = "Familiaris" a.NumberOfLegs = 4 PrintUDT a End Sub </code></pre> <p><strong>Listing 2: An example <code>PrintUDT</code> method and a simple test method</strong></p> <h3>Part 3: Making it Object-Oriented</h3> <p>The above examples provide a "quick and dirty" demonstration of how to use the TypeLib Information Object Library to enumerate the fields of a UDT. In a real-world scenario, I would probably create a <code>UDTMemberIterator</code> class that would allow you to more easily iterate through the fields of UDT, along with a utility function in a module that creates a <code>UDTMemberIterator</code> for a given UDT instance. This would allow you to do something like the following in your code, which is much closer to the pseudo-code you posted in your question:</p> <pre><code>Dim member As UDTMember 'UDTMember wraps a TLI.MemberInfo instance' For Each member In UDTMemberIteratorFor(someUDT) Debug.Print member.Name &amp; " : " &amp; member.Value Next </code></pre> <p>It's actually not too hard to do this, and we can re-use most of the code from the <code>PrintUDT</code> routine created in Part 2. </p> <p>First, create a new ActiveX project and name it <code>UDTTypeInformation</code> or something similar.</p> <p>Next, make sure that the Startup Object for the new project is set to "(None)".</p> <p>The first thing to do is to create a simple wrapper class that will hide the details of the <code>TLI.MemberInfo</code> class from calling code and make it easy to get a UDT's field's name and value. I called this class <code>UDTMember</code>. The <em>Instancing</em> property for this class should be <em>PublicNotCreatable</em>.</p> <pre><code>'UDTMember.cls' Option Explicit Private m_value As Variant Private m_name As String Public Property Get Value() As Variant Value = m_value End Property 'Declared Friend because calling code should not be able to modify the value' Friend Property Let Value(rhs As Variant) m_value = rhs End Property Public Property Get Name() As String Name = m_name End Property 'Declared Friend because calling code should not be able to modify the value' Friend Property Let Name(ByVal rhs As String) m_name = rhs End Property </code></pre> <p><strong>Listing 3: The <code>UDTMember</code> wrapper class</strong></p> <p>Now we need to create an iterator class, <code>UDTMemberIterator</code>, that will allow us to use VB's <code>For Each...In</code> syntax to iterate the fields of a UDT instance. The <code>Instancing</code> property for this class should be set to <code>PublicNotCreatable</code> (we will define a utility method later that will create instances on behalf of calling code).</p> <p><strong>EDIT:</strong> (2/15/09) I've cleaned the code up a bit more.</p> <pre><code>'UDTMemberIterator.cls' Option Explicit Private m_members As Collection ' Collection of UDTMember objects ' ' Meant to be called only by Utils.UDTMemberIteratorFor ' ' ' ' Sets up the iterator by reading the type info for ' ' the passed-in UDT instance and wrapping the fields in ' ' UDTMember objects ' Friend Sub Initialize(ByVal someUDT As Variant) Set m_members = GetWrappedMembersForUDT(someUDT) End Sub Public Function Count() As Long Count = m_members.Count End Function ' This is the default method for this class [See Tools-&gt;Procedure Attributes] ' ' ' Public Function Item(Index As Variant) As UDTMember Set Item = GetWrappedUDTMember(m_members.Item(Index)) End Function ' This function returns the enumerator for this ' ' collection in order to support For...Each syntax. ' ' Its procedure ID is (-4) and marked "Hidden" [See Tools-&gt;Procedure Attributes] ' ' ' Public Function NewEnum() As stdole.IUnknown Set NewEnum = m_members.[_NewEnum] End Function ' Returns a collection of UDTMember objects, where each element ' ' holds the name and current value of one field from the passed-in UDT ' ' ' Private Function GetWrappedMembersForUDT(ByVal someUDT As Variant) As Collection Dim collWrappedMembers As New Collection Dim ri As RecordInfo Dim member As MemberInfo Dim memberVal As Variant Dim wrappedMember As UDTMember ' Try to get type information for the UDT... ' If VarType(someUDT) &lt;&gt; vbUserDefinedType Then Fail "Parameter passed to GetWrappedMembersForUDT is not an instance of a user-defined type." End If Set ri = tli.TypeInfoFromRecordVariant(someUDT) If ri Is Nothing Then Fail "Error retrieving RecordInfo for type '" &amp; TypeName(someUDT) &amp; "'" End If ' Wrap each UDT member in a UDTMember object... ' For Each member In ri.Members Set wrappedMember = CreateWrappedUDTMember(someUDT, member) collWrappedMembers.Add wrappedMember, member.Name Next Set GetWrappedMembersForUDT = collWrappedMembers End Function ' Creates a UDTMember instance from a UDT instance and a MemberInfo object ' ' ' Private Function CreateWrappedUDTMember(ByVal someUDT As Variant, ByVal member As MemberInfo) As UDTMember Dim wrappedMember As UDTMember Set wrappedMember = New UDTMember With wrappedMember .Name = member.Name .Value = tli.RecordField(someUDT, member.Name) End With Set CreateWrappedUDTMember = wrappedMember End Function ' Just a convenience method ' Private Function Fail(ByVal message As String) Err.Raise 5, TypeName(Me), message End Function </code></pre> <p><strong>Listing 4: The <code>UDTMemberIterator</code> class.</strong></p> <p>Note that in order to make this class iterable so that <code>For Each</code> can be used with it, you will have to set certain Procedure Attributes on the <code>Item</code> and <code>_NewEnum</code> methods (as noted in the code comments). You can change the Procedure Attributes from the Tools Menu (Tools->Procedure Attributes).</p> <p>Finally, we need a utility function (<code>UDTMemberIteratorFor</code> in the very first code example in this section) that will create a <code>UDTMemberIterator</code> for a UDT instance, which we can then iterate with <code>For Each</code>. Create a new module called <code>Utils</code> and add the following code:</p> <pre><code>'Utils.bas' Option Explicit ' Returns a UDTMemberIterator for the given UDT ' ' ' ' Example Usage: ' ' ' ' Dim member As UDTMember ' ' ' ' For Each member In UDTMemberIteratorFor(someUDT) ' ' Debug.Print member.Name &amp; ":" &amp; member.Value ' ' Next ' Public Function UDTMemberIteratorFor(ByVal udt As Variant) As UDTMemberIterator Dim iterator As New UDTMemberIterator iterator.Initialize udt Set UDTMemberIteratorFor = iterator End Function </code></pre> <p><strong>Listing 5: The <code>UDTMemberIteratorFor</code> utility function.</strong></p> <p>Finally, compile the project and create a new project to test it out.</p> <p>In your test projet, add a reference to the newly-created <code>UDTTypeInformation.dll</code> and the <code>UDTLibrary.dll</code> created in Part 1 and try out the following code in a new module:</p> <pre><code>'Module1.bas' Option Explicit Public Sub TestUDTMemberIterator() Dim member As UDTMember Dim p As Person p.FirstName = "John" p.LastName = "Doe" p.BirthDate = #1/1/1950# For Each member In UDTMemberIteratorFor(p) Debug.Print member.Name &amp; " : " &amp; member.Value Next Dim a As Animal a.Genus = "Canus" a.Species = "Canine" a.NumberOfLegs = 4 For Each member In UDTMemberIteratorFor(a) Debug.Print member.Name &amp; " : " &amp; member.Value Next End Sub </code></pre> <p><strong>Listing 6: Testing out the <code>UDTMemberIterator</code> class.</strong></p> http://stackoverflow.com/questions/322033/recommendations-for-a-programmable-drivers-license-scanner/1564082#1564082 0 Answer by Mike Spross for Recommendations for a programmable drivers license scanner? Mike Spross 2009-10-14T03:21:48Z 2009-10-14T03:44:39Z <p>We support something similar in our records management software. Our application is designed to work with a wedge reader, since they are the easiest to get up and running (no special drivers needed). It works by simulating keyboard input when you swipe a card. When a card is swiped, it sends keystrokes to the OS for each character encoded on the magnetic stripe, with a simulated <code>Enter</code> keypress between each track (an AAMVA-compliant license has 3 data tracks). </p> <p>It's slightly annoying because it behaves <em>exactly</em> as if someone was typing out the data by hand, so there is no easy way to tell when you have all the data (you could just wait to get 3 lines of information, but then it's difficult to detect invalid cards, such as when someone tries to swipe a student ID card, which might have fewer than 3 tracks encoded; in this case, the application hangs forever waiting for the non-existent third track to be received). To deal with this, we use a "fail-fast" approach: each time we get an <code>Enter</code> keypress, we immediately process the current line, keeping a record of which track we are expecting at that point (1, 2, or 3). If the current track cannot be processed (for example, a different start character appears on the track that what is documented for an AAMVA format driver's license), we assume the user must have swiped something other than a driver's license.</p> <p>I'm not sure if the reader we use supports reading image data or not. It can be programmed to return a subset of the data on the card, but we just use the factory default setting, which appears to return only the first three data tracks (and actually I believe image data is encoded in the 2D barcode found on some licenses, not on the magnetic stripe, but I could be wrong).</p> <p>For more on the AAMVA track format that is used on driver's license magstripes, see Annex F in the <a href="http://bit.ly/15IAcQ" rel="nofollow">current standard</a>.</p> <p>The basic approach we use is:</p> <ol> <li><p>Display a modal dialog that has a hidden textbox, which is given focus. The dialog box simply tells the user to swipe the card through the reader.</p></li> <li><p>The user swipes the card, and the reader starts sending keydown events to the hidden textbox.</p></li> <li><p>The keydown event handler for the textbox watches for <code>Enter</code> keypresses. When one is detected, we grab the last line currently stored in the textbox, and pass it to a track parser that attempts to parse the track according to the AAMVA format. </p></li> <li><p>If this "fail-fast" parsing step fails for the current track, we change the dialog's status message to a message telling the user the card could not be read. At this point, the textbox will still receive additional keydown events, but it's OK because subsequent tracks have a high enough chance of also failing that the user will still see the error message whenever the reader stops sending data.</p></li> <li><p>If the parsing is successful, we increment a counter that tells the parser what track it should process next. </p></li> <li><p>If the current track count is greater than 3, we know we've processed 3 tracks. At this point we parse the 3 tracks (which have already split most of the fields up but everything is still stored as strings at this point) into a more usable <code>DriversLicense</code> object, which does additional checks on the track data, and makes it more consumable from our application (converting the <code>DOB</code> field from a string into a real Date object, parsing out the subfields in the AAMVA <code>Name</code> field into first name, middle name, last name, name suffix, etc.). If this second parsing phase fails, we tell the user to reswipe the card. If it succeeds, we close the dialog and pass the <code>DriversLicense</code> object to our main application for further processing.</p></li> </ol> http://stackoverflow.com/questions/1538900/under-what-circumstances-would-you-want-rails-to-be-set-not-to-reconnect-to-mysql/1546903#1546903 1 Answer by Mike Spross for Under what circumstances would you want Rails to be set NOT to reconnect to MYSQL Mike Spross 2009-10-10T03:00:11Z 2009-10-10T03:00:11Z <p>As you pointed out in the question, one possible side-effect of automatically reconnecting (if done at a per-statement level), is that it is not transaction-safe.</p> <p>The MySQL <a href="http://dev.mysql.com/doc/refman/5.0/en/auto-reconnect.html" rel="nofollow">documentation</a> in fact explicitly states that the auto-reconnect feature affects transactions:</p> <blockquote> <p>Any active transactions are rolled back and autocommit mode is reset.</p> </blockquote> <p>Applications that are not written to deal with this could easily break. The documentation also lists a number of other side effects caused by the auto-reconnect feature, all of which could cause applications not written to anticipate the behavior to function incorrectly or fail.</p> <p>Also, if the connection to the database is suddenly lost, the server might not properly release locks that were being held by the connection, so it sounds like an application could deadlock in some cases:</p> <blockquote> <p>If the connection drops, it is possible that the session associated with the connection on the server side will still be running if the server has not yet detected that the client is no longer connected. In this case, any locks held by the original connection still belong to that session, so you may want to kill it by calling mysql_kill().</p> </blockquote> http://stackoverflow.com/questions/1480023/code-golf-lasers/1485612#1485612 8 Answer by Mike Spross for Code Golf: Lasers Mike Spross 2009-09-28T05:58:22Z 2009-09-29T06:33:15Z <h1>Ruby, 176 characters</h1> <pre><code>x=!0;y=0;e="^v&lt;&gt;#x";b=readlines;b.map{|l|(x||=l=~/[v^&lt;&gt;]/)||y+=1};c=e.index(b[y][x]) loop{c&lt;2&amp;&amp;y+=c*2-1;c&gt;1&amp;&amp;x+=2*c-5;e.index(n=b[y][x])&amp;&amp;(p n==?x;exit);c^=' \/'.index(n)||0} </code></pre> <p>I used a simple state machine (like most posters), nothing fancy. I just kept whittling it down using every trick I could think of. The bitwise XOR used to change direction (stored as an integer in the variable <code>c</code>) was a big improvement over the conditionals I had in earlier versions. </p> <p>I have a suspicion that the code that increments <code>x</code> and <code>y</code> could be made shorter. Here is the section of the code that does the incrementing:</p> <pre><code>c&lt;2&amp;&amp;y+=c*2-1;c&gt;1&amp;&amp;x+=(c-2)*2-1 </code></pre> <p><strong>Edit</strong>: I was able to shorten the above slightly:</p> <pre><code>c&lt;2&amp;&amp;y+=c*2-1;c&gt;1&amp;&amp;x+=2*c-5 </code></pre> <p>The current direction of the laser <code>c</code> is stored as follows:</p> <pre> 0 => up 1 => down 2 => left 3 => right </pre> <p>The code relies on this fact to increment <code>x</code> and <code>y</code> by the correct amount (0, 1, or -1). I tried rearranging which numbers map to each direction, looking for an arrangement that would let me do some bitwise manipulation to increment the values, because I have a nagging feeling that it would be shorter than the arithmetic version.</p> http://stackoverflow.com/questions/662962/workaround-for-vb-net-byref-parameter-of-a-property/665043#665043 1 Answer by Mike Spross for Workaround for VB.Net - ByRef parameter of a property Mike Spross 2009-03-20T05:01:11Z 2009-09-13T04:20:24Z <p>If you can't change the source code for the legacy COM component, you'll have to work around it. One possibility is to create a new VB6 component that implements <code>IPasswordCallback</code> and which does the actual work of getting the password by calling back into your .NET code. This way, the VB6 code can deal with the <code>ByRef</code> parameter, and the .NET code won't see it.</p> <p>Most of the code to make it work will be VB6 code, which you can put into a new ActiveX DLL project and reference from your .NET project.</p> <p>Here is an outline of the different classes and interfaces needed:</p> <ul> <li><p>Class <code>ByValPasswordCallbackWrapper</code> (VB6): This class is a wrapper class that hides the <code>ByRef</code> parameter from the .NET code. When this class's <code>Password</code> property is called by the legacy COM component, this class will call a helper class (written in .NET) that will do the actual callback work. The VB6 class will then take the results from the helper class and return them to the legacy COM component.</p></li> <li><p>Class <code>PasswordCallbackArgs</code> (VB6): This class is used to pass the parameters from a call to <code>IPasswordCall_Password</code> to the .NET helper class that will doing the real work. </p></li> <li><p>Interface <code>IPasswordCallbackProvider</code> (VB6): This is the interface that your .NET code will implement instead of implementing <code>IPasswordCallback</code> directly.</p></li> </ul> <h3>The Code</h3> <p>Below is the code listing for each of the VB6 components mentioned above. You can add this code to a new ActiveX DLL project and compile it for use from your .NET code. Each file is listed separately. As an aside, make sure the <em>Instancing</em> property for each of these classes is set to "5-MultiUse".</p> <p><hr /></p> <p><strong>File</strong>: PasswordCallbackArgs.cls</p> <pre><code>'Used to pass arguments around' Public OwnerNeeded As Boolean Public IsValidResult As Boolean </code></pre> <p><hr /></p> <p><strong>File</strong>: IPasswordCallbackProvider.cls</p> <pre><code>' This is the interface that your .NET ' ' class should implement (instead of IPasswordCallback) ' Public Function GetPassword(ByVal args As PasswordCallbackArgs) End Function </code></pre> <p><hr /></p> <p><strong>File</strong>: ByValPasswordCallbackWrapper.cls</p> <pre><code>Implements IPasswordCallback Private m_callbackProvider As IPasswordCallbackProvider Pubic Property Set CallbackProvider(ByVal callbackProvider As IPasswordCallbackProvider) Set m_callbackProvider = callbackProvider End Property Private Property Get IPasswordCallback_Password( _ ByVal ownerNeeded As Boolean, _ ByRef isResultValid As Boolean) As String IPasswordCallback_Password = DoGetPassword(ownerNeeded, isResultValid) End Property Private Function DoGetPassword( ByVal ownerNeeded As Boolean, _ ByRef isResultValid As Boolean) As String If m_callbackProvider Is Nothing Then Err.Raise 5,,"No callback provider. DoGetPassword failed." End If 'Wrap the arguments in a PasswordCallbackArgs object.' 'Do not need to fill args.IsResultValid here - the callback provider will do that' Dim args As New PasswordCallbackArgs args.OwnerNeeded = ownerNeeded 'Get the password and a value to put back into our ByRef isResultValid' DoGetPassword = m_callbackProvider.GetPassword(args) isResultValid = args.IsResultValid End Sub </code></pre> <p><hr /></p> <h3>How to Use This Code</h3> <p>Once the above code has been compiled into an ActiveX DLL, add a reference to it from your .NET project.</p> <p>Next, put the .NET code that you would have put into your <code>IPasswordCallback</code> implementation into a new class that implements <code>IPasswordCallbackProvider</code>. Remember that the callback parameters (<code>ownerNeeded</code> and <code>isResultValid</code>) are passsed to your provider class in a <code>PasswordCallbackArgs</code> object, so you will have to use <code>args.ownerNeeded</code> and <code>args.isResultValid</code> in your .NET class to refer to them.</p> <p>Here is a stub provider class to get you started:</p> <p><strong>File</strong>: MyPasswordCallbackProvider.vb (VB.NET)</p> <pre><code>' A stub implementation of an IPasswordCallbackProvider ' Public Class MyPasswordCallbackProvider Implements IPasswordCallbackProvider Public Function GetPassword(PasswordCallbackArgs args) As String _ Implements IPasswordCallbackProvider.Password Dim password As String = "" Dim resultWasValid As Boolean If args.OwnerNeeded Then 'do stuff' Else 'do other stuff' End If 'do even more stuff' 'set whether the result was valid or not' args.ResultValid = resultWasValid Return password End Property End Class </code></pre> <p>In order to pass a valid <code>IPasswordCallback</code> to your legacy COM object, you will need to create a <code>ByValPasswordCallbackWrapepr</code>, set its <code>CallbackProvider</code> property, and then pass the wrapper object to the legacy COM object.</p> <p>Using the above example, and assuming you have a instance of your legacy COM component called <code>LegacyComObject</code>, you would do something like the following to set up the callback:</p> <pre><code>' Create the callback wrapper ' ByValPasswordCallbackWrapper wrapper = New ByValPasswordCallbackWrapper() ' Tell the wrapper to call our custom IPasswordCallbackProvider ' wrapper.CallbackProvider = New MyPasswordCallbackProvider() ''" Pass the call back wrapper to the legacy COM object ''" ''" (not sure how this is done in your scenario. ''" ''" I'm just pretending it's a property since I don't know... "'' LegacyComObject.PasswordCallback = wrapper </code></pre> <h3>Why This Works</h3> <p>This works because <code>ByValPasswordCallbackWrapper</code> implements the <code>IPasswordCallback</code> interface that the legacy COM object is expecting to receive. The <code>ByValPasswordCallbackWrapper</code> in turn provides a way to hook into the callback process via the <code>IPasswordCallbackProvider</code> interface. The <code>IPasswordCallbackProvider</code> COM interface is compatible with .NET, so you can write an implementing class using VB.NET. The <code>ByValPasswordCallbackWrapper</code> calls your <code>IPasswordCallbackProvider</code> to do the work of getting the password, and makes sure to put a value back into the <code>ByRef</code> parameter.</p> http://stackoverflow.com/questions/1162924/what-good-are-right-associative-methods-in-scala 7 What good are right-associative methods in Scala? Mike Spross 2009-07-22T03:26:37Z 2009-08-30T08:12:49Z <p>I've just started playing around with Scala, and I just learned about how methods can be made <em>right-associative</em> (as opposed to the more traditional <em>left-associativity</em> common in imperative object-oriented languages).</p> <p>At first, when I saw example code to <code>cons</code> a list in Scala, I had noticed that every example always had the List on the right-hand side:</p> <pre><code>println(1 :: List(2, 3, 4)) newList = 42 :: originalList </code></pre> <p>However, even after seeing this over and over again, I didn't think twice about it, because I didn't know (at the time) that <code>::</code> is a method on <code>List</code>. I just assumed it was an operator (again, in the sense of operator in Java) and that associativity didn't matter. The fact that the <code>List</code> always appeared on the right-hand side in example code just seemed coincidental (I thought it was maybe just the "preferred style").</p> <p>Now I know better: it has to be written that way because <code>::</code> is right-associative. </p> <p><strong>My question is, what is the point of being able to define right-associative methods?</strong> </p> <p>Is it purely for aesthetic reasons, or can right-associativity actually have some kind of benefit over left-associativity in certain situations?</p> <p>From my (novice) point-of-view, I don't really see how</p> <pre><code>1 :: myList </code></pre> <p>is any better than </p> <pre><code>myList :: 1 </code></pre> <p>but that's obviously such a trivial example that I doubt it's a fair comparison.</p> http://stackoverflow.com/questions/1338873/api-design-how-should-distinct-classes-of-errors-be-handled-from-an-asynchronous 0 API Design: How should distinct classes of errors be handled from an asynchronous XMLHTTP call? Mike Spross 2009-08-27T04:38:14Z 2009-08-27T07:03:55Z <p>I have a legacy VB6 application that needs to make asynchronous calls to a web service. The web service provides a <code>search</code> method allows end-users to query a central database and view the results from within the application. I'm using the <code>MSXML2.XMLHTTP</code> to make the requests, and have written a <code>SearchWebService</code> class that encapsulates the web service call and code to handle the response asychronously.</p> <p>Currently, the <code>SearchWebService</code> raises one of two events to the caller: <code>SearchCompleted</code> and <code>SearchFailed</code>. A <code>SearchCompleted</code> event is raised that contains the search results in a parameter to the event if the call completes successfully. A <code>SearchFailed</code> is raised when any type of failure is detected, which can be anything from an improperly-formatted URL (this is possible because the URL is user-configurable), to low-level network errors such as "Host not found", to HTTP errors such as internal server errors. It returns a error message string to the end-user (which is extracted from the web service response body, if present, or from the HTTP status code text if the response has no body, or translated from the network error code if a network error occurs).</p> <p>Because of various security requirements, the calling application does not access the web service directly, but instead accesses it through a proxy web server running at the customer site, which in turn accesses the actual web service through via a VPN. However, the <code>SearchWebService</code> doesn't know that the calling application is accessing the web service through a proxy: it's just given a URL and told to make the request. The existence of the proxy is a application-level requirement.</p> <p>The problem is that from an end-user perspective, it's important that the calling application be able to distinguish between low-level network errors versus HTTP errors from the web service, and to distinguish proxy errors from remote web server errors. For example, the application needs to know if a request failed because the proxy server is down, or because the remote web service that the proxy is accessing is down. An application-specific message needs to be presented to the end-user in each case, such as "Search web service proxy server appears to be down. The proxy server may need to be restarted" versus "The proxy is currently running but the remote web server appears to be unavailable. Please contact (name of person in charge of the remote web server)." I could handle this directly in the <code>SearchWebService</code> class, but it seems wrong to generate these application-specific error messages from such a generic class (and the class might be used in environments that don't require a proxy, where the error messages would no longer make sense).</p> <p>This distinction is important for troubleshooting: a proxy server problem can usually be resolved by the customer, but a remote web server error has to handled by a third party.</p> <p>I was thinking one way to handle this would be to have the <code>SearchWebService</code> class detect different types of errors and raise different events in each case. For example, instead of a single <code>SearchFailed</code> event, I could have a <code>NetworkError</code> event for low-level network errors (which would indicate a problem accessing the proxy server), a <code>ConfigurationError</code> event for invalid properties on the <code>SearchWebService</code> class (such as passing an improperly-formatted URL), and a <code>ServiceError</code> for errors that occur on the remote web server (implying that the proxy is working properly but the remote server returned an error).</p> <p>Now that I think about it, there is also an additional error scenario: it could be possible that the proxy server is running properly, but the remote web server is down, or the proxy server has been misconfigured.</p> <p>Is the approach of using multiple error events to classify different classes of error a reasonable solution to this problem? For the last scenario (the proxy is running but the remote server cannot be reached), I'm guessing I may have to set up the proxy to return a specific HTTP error code so that client can detect this situation (i.e. something more specific than a 500 response).</p> <p>Originally I kept the single <code>SearchFailed</code> event and simply added an additional <code>errorCode</code> parameter to the event, but that got messy quickly, especially in cases where there wasn't a logical error code to use (such as if the VB6 raises a "real" error, i.e. if the XMLHTTP class isn't registered).</p> http://stackoverflow.com/questions/167580/is-there-a-way-to-prevent-the-vb6-compiler-from-shuffling-the-contents-of-files/169716#169716 4 Answer by Mike Spross for Is there a way to prevent the VB6 compiler from shuffling the contents of files? Mike Spross 2008-10-04T04:08:47Z 2009-07-27T05:37:04Z <p>I don't think there's much you can do about this. I've noticed the same problem: the IDE likes to rearrange things for seemingly no apparent reason. Some things I've noticed:</p> <ul> <li><p>When you use the SSTab control, VB likes to rearrange properties for tabs, especially the TabEnabled property.</p></li> <li><p>For project files, it randomly rearranges the order in which files appear and I think I remember seeing cases where similar file types are not always grouped together and end up mixed in with the project properties. You don't have much control over this, unless you run all your VBP's through some type of sanitizer that groups like files together (forms in one group, modules in another group, etc.) and sorts them alphabetically or something, so that they remain consistent. One possible way to handle this could be to write an IDE add-on that automatically does this everytime you save changes to a project file, or come up with some batch process that will just recurse over your source directories and clean up all the VBP's in one go.</p></li> <li><p>The IDE seems to randomly change the case of things; this seems to happen frequently to project references. Sometimes they are output in lower case, and other times they are output in upper case. You can get around this by choosing "Ignore Case" when you diff files in SourceSafe.</p></li> <li><p>Control coordinates, such Top, Left, Height, and Width, can differ between two revisions of the same form. This is due to different developers using different screen resolutions and/or different screen DPI settings while working on the same form. If you aren't doing this already, I highly recommend that you get everyone to develop using the same resolution and same DPI setting. The differing values are caused by rounding errors that occur when logical screen coordinates at different resolutions/DPI settings are converted to twips, the default coordinate space that VB uses for laying out forms. Additionally, while I'm on the topic, make sure everyone has their display set to 96dpi, because if you develop VB forms at 120dpi, there is a really really good chance they won't display correctly on a display set to 96dpi.</p></li> <li><p>There are probably other things I can't remember right now...</p></li> </ul> <p>As for the order of controls being changed in form files, this is normal, and you usually don't want to try rearrange the order of controls by hand if it happens to change from one revision of the form to the next. The order that the controls appear in a form file determines their Z-order on the form. If the order of the controls changes in the .frm file, this will change their relative Z-order on the form, which could lead to unintended results in how your forms are displayed.</p> http://stackoverflow.com/questions/1168290/how-to-pass-a-late-bound-parameter/1173889#1173889 0 Answer by Mike Spross for How to Pass a Late Bound Parameter Mike Spross 2009-07-23T19:16:00Z 2009-07-23T19:16:00Z <blockquote> <p>I used VarType(y). The result is 8, for vbString. It should be 9 for object. – ssorrrell 1 hour ago</p> <p>Use Print y in the Immediate window to find the contents of y. – ssorrrell 55 mins ago</p> </blockquote> <p>This seems to confirm my suspicions. The <code>MyOwn.Object</code> class must have a default property or method that returns a string. </p> <p>Therefore, when you try to <code>Debug.Print</code> it, it will return the value of the default property/method. When you hover over the variable in the IDE, VB6 will display the value of the default property/method. When you do a <code>VarType</code> call on <code>y</code> it will return the variable type of the default property or method.</p> <p>The reason is that when you have a variable of type <code>Variant</code> that stores an <code>Object</code>, and the class of the object defines a default method or property, the variable will evaluate to the return value of the default method or property in most situations. </p> <p>You can quickly check to see if the <code>MyOwn.Object</code> class has a default member by opening the <em>Object Browser</em> to the <code>MyOwn.Object</code> class and looking at the its list of properties and methods. If you see a method or property that has an icon with small blue circle in the corner, that indicates the method or property is the default member of the class. If you find one, I'm willing to bet it's declared to return a string.</p> <p>Note that even if you changed all your <code>Variant</code>S to <code>Object</code>S, you would still encounter this behavior in a number of places. For example, even if <code>y</code> is declared <code>As Object</code>, doing a <code>Debug.Print y</code> will still print out the value of the default property or method, and doing a <code>VarType(y)</code> will still return 8 (string).</p> <p>Knowing exactly when VB6 will use the default member and when it won't can be confusing. For example, if you declare <code>y</code> as <code>Object</code>, then doing <code>TypeName(y)</code> will return <code>MyOwn.Class</code>, but <code>VarType(y)</code> will still return 8 (string). However, if you declare <code>y</code> as <code>Variant</code>, then <code>TypeName(y)</code> returns <code>String</code>.</p> <p>If you are using late-binding, it's hard to avoid this side-effect, since you'll only be able to declare your object variable as <code>Object</code> or <code>Variant</code>.</p> http://stackoverflow.com/questions/1132824/should-internal-net-applications-be-placed-in-the-same-namespace-as-the-internal 0 Should internal .NET applications be placed in the same namespace as the internal libraries they depend on? Mike Spross 2009-07-15T17:37:05Z 2009-07-20T03:47:30Z <p>The company where I work has recently decided to use a combination of .NET and Java for all future development efforts. We've been trying to standardize how we organize our code into namespaces (.NET) and packages (Java) and no one really has experience trying to organize namespaces for multiple products involving multiple platforms.</p> <p>Recently, I got involved with a new product that uses a Java frontend (it runs on Blackberry devices) with a .NET backend (a message broker that allows the Java frontend to communicate with our legacy VB6/COM code, because we didn't want to deal with COM on the Java side and it's easy to make .NET work with our existing VB6 code). Right now I'm just focusing on the .NET side of things.</p> <p>I created a new .NET solution called <code>CompanyName.ProductName.Broker</code>, and ended up with two subprojects: a <code>Core</code> class library project that implements the majority of the broker code, and a <code>BrokerConsole</code> console project that allows the broker to started and stopped from the commandline (the broker will be running on a server along with a RabbitMQ message queue server).</p> <p>Right now, both projects are in subnamespaces of the <code>CompanyName.ProductName.Broker</code> namespace. The question is, does this make sense?</p> <p>On the one hand, the <code>BrokerConsole</code> project is pretty tightly-coupled to the <code>Core</code> project, but on the other hand, the <code>BrokerConsole</code> compiles to a standalone EXE. I was thinking it might make more sense to put the <code>BrokerConsole</code> project into a separate root namespace, maybe something like <code>CompanyName.Apps.ProductName</code>, because it's really a front-end to <code>CompanyName.ProductName.Broker.Core.dll</code> and is an application as opposed to a library. </p> <p>My rationale for creating an entirely new <code>CompanyName.Apps</code> root namespace is that typically when you create an application, you put it into a separate namespace from the libraries you are referencing anyway (i.e. you wouldn't put your web server application into the <code>System.Web</code> namespace). I'm thinking along the same lines, except that the referenced libraries happen to be libraries developed by the company.</p> <p>Is this a good idea, or should I try and keep everything related to a "product" (in marketing terms) under a common <code>CompanyName.ProductName</code> namespace? Are there better ways to manage multiple projects that together make up a single product?</p> http://stackoverflow.com/questions/1059930/a-better-cdate-for-vb6/1060456#1060456 1 Answer by Mike Spross for A better CDate for VB6 Mike Spross 2009-06-29T20:47:24Z 2009-06-30T07:38:08Z <p>You can use the built-in <code>Format</code> function to do this for you.</p> <p>Here is a simple test to confirm this:</p> <pre><code>Public Sub TestDateParsing() 'On my computer, the date format is U.S. (mm/dd/yyyy)' 'This test creates a date string in dd/mm/yyyy format to' 'simulate user input in a different format' Const TEST_DATE As Date = #6/1/2009# Dim inputDate As String inputDate = Format(TEST_DATE, "dd/mm/yyyy") 'inputDate is "1/6/2009" (June 1 in dd/mm/yyyy format)' Debug.Print Format(inputDate, "dd/mm/yyyy") 'It`s magic! The above line will print 6/1/2009' 'which is the correct format for my Regional Settings' End Sub </code></pre> <p>It might seem like magic, but it isn't. It takes advantage of how the <code>Format</code> function works in conjunction with the current regional settings.</p> <p>For example, suppose your Regional Settings are configured to use the <code>"mm/dd/yyyy"</code> format for dates.</p> <p>Now, you get a date string from a user in <code>"dd/mm/yyyy"</code> format. If you <code>Format</code> this date string and tell <code>Format</code> to also use <code>"dd/mm/yyy"</code>, it will swap the month and day parts of the date because your settings say dates are in <code>"mm/dd/yyyy"</code> format. </p> <p>In other words, <code>Format</code> always assumes the date string from the user is formatted according to your current Regional Settings (in this case, <code>"mm/dd/yyyy"</code>), so when you tell it to format the date using <code>"dd/mm/yyyy"</code>, it will force it to swap the month and day parts. If your Regional Settings use the same format as the user-provided date, this code will still work: <code>Format</code> will simply return the user date unchanged. Confused yet? ;)</p> <p>The same thing will happen if your Regional Settings are set for <code>"dd/mm/yyyy"</code> and the user sends a date in <code>"mm/dd/yyyy"</code> format.</p> <p>The catch is that you have to know ahead of time which format the user is sending dates in. They can't start mixing and matching date formats (and they shouldn't be anyway).</p> <p><hr /></p> <p>EDIT (<em>by MarkJ</em>) - just to prove that Mike's code can convert a string to Date. Mike, please roll back or change this edit if you want.</p> <pre><code>Public Sub Test() Dim dte As Date For dte = #1/1/2009# To #12/31/2009# Call TestDateParsing(dte) Next dte End Sub Public Sub TestDateParsing(ByVal dteIn As Date) 'On my computer, the date format is U.S. (mm/dd/yyyy)' 'This test creates a date string in dd/mm/yyyy format to' 'simulate user input in a different format' Dim sExpected As String sExpected = Day(dteIn) &amp; " / " &amp; Month(dteIn) &amp; " / " &amp; Year(dteIn) Dim inputDate As String Dim dte As Date inputDate = Format(dteIn, "dd/mm/yyyy") dte = Format(inputDate, "dd/mm/yyyy") Debug.Assert sExpected = Day(dte) &amp; " / " &amp; Month(dte) &amp; " / " &amp; Year(dte) Debug.Print sExpected End Sub </code></pre> http://stackoverflow.com/questions/1027445/how-can-i-emulate-multiple-inheritance-and-use-reflection-to-optimize-this-code/1027903#1027903 1 Answer by Mike Spross for How can I emulate multiple-inheritance and use reflection to optimize this code? Mike Spross 2009-06-22T15:40:34Z 2009-06-22T15:40:34Z <p>One possible solution is to reverse the relationship between <code>PageItem</code> and <code>PageItemViewModel</code> in your code. Right now, you are generating a <code>PageItemViewModel</code> based on a <code>PageItem</code>, but what if you created the <code>PageItemViewModel</code>s first and then in each <code>PageItemViewModel</code>'s constructor, you created the appropriate <code>PageItem</code>? This eliminates the need for the <code>switch</code> and makes things cleaner, because now your view-model is responsible for the model, instead of the model being responsible for the view-model.</p> <p>An example based on your current code:</p> <pre><code>using System; using System.Collections.Generic; namespace TestInstantiate838 { public class Program { static void Main(string[] args) { List&lt;ViewModelPageItemBase&gt; pageItemViewModels = PageItemViewModels.GetAll(); // No switch needed anymore. Each PageItem's view-model contains its PageItem // which is exposed as property of the view-model. foreach (ViewModelPageItemBase pageItemViewModel in pageItemViewModels) { System.Console.WriteLine("{0}:{1}", pageItemViewModel.PageItem.IdCode, pageItemViewModel.PageItem.Title); } Console.ReadLine(); } } public class PageItemManageCustomersViewModel : ViewModelPageItemBase { public PageItemManageCustomersViewModel() { PageItem = new PageItem { IdCode = "manageCustomers", Title = "ManageCustomers" }; } } public class PageItemManageEmployeesViewModel : ViewModelPageItemBase { public PageItemManageEmployeesViewModel() { PageItem = new PageItem { IdCode = "manageEmployees", Title = "ManageEmployees" }; } } public abstract class ViewModelPageItemBase : ViewModelBase { //The PageItem associated with this view-model public PageItem PageItem { get; protected set; } } public abstract class ViewModelBase { protected void OnPropertyChanged(string propertyName) { //this is the INotifyPropertyChanged method which all ViewModels need } } public class PageItem { public string IdCode { get; set; } public string Title { get; set; } } // Replaces PageItems class public class PageItemViewModels { // Return a list of PageItemViewModel's instead of PageItem's. // Each PageItemViewModel knows how to build it's corresponding PageItem object. public static List&lt;PageItemViewModelBase&gt; GetAll() { List&lt;PageItemViewModelBase&gt; pageItemViewModels = new List&lt;PageItemViewModelBase&gt;(); pageItemViewModels.Add(new PageItemManageCustomersViewModel()); pageItemViewModels.Add(new PageItemManageEmployeesViewModel()); return pageItemViewModels; } } } </code></pre> http://stackoverflow.com/questions/914628/getobject-and-vb6-activex-exe/916554#916554 3 Answer by Mike Spross for GetObject and VB6 ActiveX exe Mike Spross 2009-05-27T15:55:22Z 2009-06-17T04:19:03Z <p>The documentation is confusing, but correct. The MSDN page you reference helps to explain why your <code>GetObject</code> call doesn't throw an error:</p> <blockquote> <p>If <strong><em>pathname</em></strong> [<em>the first argument</em>] is a zero-length string (""), <strong>GetObject</strong> returns a new object instance of the specified type. If the pathname argument is omitted, <strong>GetObject</strong> returns a currently active object of the specified type. If no object of the specified type exists, an error occurs.</p> </blockquote> <p>It's subtle, but the implication is that </p> <pre><code>GetObject "", "ProjectName.ClassName </code></pre> <p>is actually equivalent to </p> <pre><code>CreateObject "ProjectName.ClassName" </code></pre> <p>That is to say, passing an empty string to the first parameter of <code>GetObject</code> makes it operate exactly like <code>CreateObject</code>, which means it will create a <strong>new instance</strong> of the class, rather than returning a reference to an already-running instance.</p> <p>Going back to the MSDN excerpt, it mentions that omitting the first argument to <code>GetObject</code> altogether will cause <code>GetObject</code> to return a reference to an already-running instance, if one exists. Such a call would look like this:</p> <pre><code>GetObject , "ProjectName.ClassName" 'Note nothing at all is passed for the first argument' </code></pre> <p>However, if you try to do this, you will immediately get a run-time error. This is the use-case that the documentation is referring to when it says that <code>GetObject</code> doesn't work with classes created with VB6. </p> <p>The reason this doesn't work is due to how <code>GetObject</code> performs its magic. When the first parameter is omitted, it tries to return an existing object instance by consulting the Running Object Table (ROT), a machine-wide lookup table that contains running COM objects. The problem is that objects have to be explicitly registered in the Running Object Table by the process that creates them in order to be accessible to other processes - the VB6 runtime doesn't register ActiveX EXE classes in the ROT, so <code>GetObject</code> has no way to retrieve a reference to an already-running instance.</p> http://stackoverflow.com/questions/292169/what-package-naming-convention-do-you-use-for-personal-hobby-projects-in-java 4 What package naming convention do you use for personal/hobby projects in Java? Mike Spross 2008-11-15T04:58:12Z 2009-05-31T18:06:27Z <p>I'm already familiar with the standard Java package naming convention of using a domain name to create a unique package name (i.e. package <code>com.stackoverflow.widgets</code>). However, I've never seen any recommendations for how to choose package names for personal projects. I assume because this is because this is really a matter of personal taste.</p> <p>So, how do you choose package names for personal projects that will never make it into production (you might be experimenting with a new framework in your spare time). Assuming you don't have a personal website whose domain you can use to create your package structure, what do (or would) you do? Do you have a logical system in place for generating new package names for hobby projects, or do you just use simple throw-away package names like <code>mypackage</code>?</p> <p>Since I'm just curious to see what different people's thoughts are on this, I've made this a community wiki.</p> <p>For me personally, I've never given it much thought, but I wanted to play around with <a href="http://wicket.apache.org/" rel="nofollow">Wicket</a> tonight and it occurred to me that I don't have a clear idea of how I want to organize my hobby projects. A separate, distinct package naming convention for hobby projects (in my mind, at least) would serve as a good way to keep personal and work-related code clearly separate from each other.</p> <p>I was thinking of a simple hierarchal naming convention, to keep the source for my personal projects in a single root folder:</p> <ul> <li>Use <code>myprojects</code> as the root folder </li> <li>Append the project name </li> <li>Add any additional subpackage names</li> </ul> <p>So, my Wicket project would be in the package <code>myprojects.learningwicket</code> and unit tests would be in the package <code>myprojects.learningwicket.tests</code> (for example).</p> http://stackoverflow.com/questions/432154/do-you-use-design-marker-interfaces-to-document-your-java-code 4 Do you use design marker interfaces to document your Java code? Mike Spross 2009-01-11T01:52:35Z 2009-05-30T02:37:20Z <p>I just stumbled upon this article by Bruce Wallace: </p> <p><a href="http://www.onjava.com/pub/a/onjava/2003/03/26/design_markers.html" rel="nofollow">Design Markers - Explicit Programming for the rest of us</a></p> <p>Bruce describes a way to use interfaces to explicitly document things about your classes that can't otherwise be enforced in code.</p> <h3>Bruce's example: Immutable classes</h3> <p>Suppose you have a class that should be immutable. There is no <code>immutable</code> keyword in Java, so you can't document this fact directly in your code (or, for that matter, make the compiler enforce this requirement). In order to inform other developers working on your code that they shouldn't add setter methods to your class (in order to maintain the immutability requirement), you could define an empty interface named <code>Immutable</code> that relays this requirement to others working on the project:</p> <pre><code>public interface Immutable {} </code></pre> <p>Any classes that should be immutable then simply implement this interface:</p> <pre><code>public class UserRole implements Immutable { ... } </code></pre> <p>This way, any other developers know right away that they shouldn't add setters to your class. The interface serves solely as a way to explicitly document this aspect of your class.</p> <h3>Another example: Internal framework code</h3> <p>Most frameworks contain at least a few classes that exist to support the internal operation of the framework and which normally should not be used directly by users of the framework. An <code>Internal</code> marker interface could explicitly identify such classes to end-users. </p> <p>This also provides a good example for how design marker interfaces can help to organize JavaDoc documentation. The JavaDoc comments for <code>Internal</code> would explain that it is an interface implemented by classes meant for internal use only, and would provide a single point of reference for describing internal classes. This helps maintain the DRY principle: instead of repeating the same comment for every internal class, you can write the documentation once (in the <code>Internal</code> interface JavaDoc). Anything about internal classes that needs to documented at a later date can then be updated in a single place.</p> <p>You also have the added benefit that all your <code>Internal</code> classes are listed in one place in your documentation - they will appear in the "All Known Implementing Classes" list in the JavaDoc for <code>Internal</code>.</p> <h3>Taking advantage of JavaDoc</h3> <p>This approach is meant to be used in combination with JavaDoc. For example, the JavaDoc for the <code>Immutable</code> marker interface can explain to developers that <code>Immutable</code> is a marker interface, and that it should be implemented by classes that are intended to remain immutable. As a side effect of adhering to this pattern, you can also browse the JavaDocs for your project and instantly see which classes are currently immutable, by seeing which classes implement the 'Immutable' marker interface.</p> <h3>What about design marker annotations?</h3> <p>The original article was written in 2003. Now that Java has annotation support, I could also see this same concept being implemented with annotations instead of interfaces: in fact, the <code>@Deprecated</code> annotation is a good example of Wallace's original idea. The <code>@Deprecated</code> annotation aids in the documentation of your code, rather than actually changing the behavior of your code. Annotations also give you the power to extend the "design marker" concept to individual methods in your classes.</p> <p>I can see many interesting uses for this idea, especially the annotation-based variation of it: for example, an <code>@Experimental</code> annotation could be a very useful way to document features that are "in-progress" and more subject to change that other areas of the code base.</p> <h3>And now...my question</h3> <p>So, my question is this: Has anyone here applied Wallace's "design marker" concept to real-world projects? If so, did you find it useful? If not, why not?</p> <p>I'd be very interested in what others think of this approach to documenting code, especially the annotations-based variation that I presented here.</p> <p><hr /></p> <h3>EDIT: But what's the point???</h3> <p><a href="http://stackoverflow.com/questions/432154/do-you-use-design-marker-interfaces-to-document-your-java-code#432171" rel="nofollow">David</a> raises a valid concern: why bother with all this design marker interface stuff? As he says, "code should be code." After all, you could express the same requirements in a code comment. The design marker pattern seems to couple two different (although argubly related) concerns: it tightly binds documentation concerns to the code.</p> <p>I've been playing devil's advocate in the comments, as I'm ambivalent about the usefulness/non-usefulness of the design marker pattern. However, to expand a bit on what I've been saying in the comments, I'm currently wondering if it's really such a bad thing to couple code to documentation a bit more tightly. After all, aren't most of us striving to write self-documenting code? In my mind, the design marker pattern seems like one way to achieve that goal, and even go beyond it. At the same time, I can see potential for abuse, and it would be less than helpful to try to work on a project that defined a design marker interface for every tiny little business rule or domain-specific concept.</p> <p>I'm hoping the discussion picks up and we can get input from people on both sides of the issue. I'm interested to see what people have to say on this topic.</p> http://stackoverflow.com/questions/924144/is-there-such-a-thing-as-a-soap-proxy-server-or-am-i-going-to-have-to-roll-my-own 3 Is there such a thing as a SOAP proxy server or am I going to have to roll my own? Mike Spross 2009-05-29T02:28:18Z 2009-05-29T18:02:36Z <p><strong>Disclaimer</strong>: I've tried Googling for something that will do what I want, but no luck there. I'm hoping someone here might be able to lend a hand.</p> <h3>Background</h3> <p>I have a .NET class library that accesses a secure web service with the WSE 2.0 library. The web service provides a front-end to a central database (it's actually part of a data-sharing network spanning multiple customers) and the class library provides a simple wrapper around the web service calls to make it accessible from a legacy VB6 application. The legacy application uses the class library to retrieve and publish information to the web service. Currently, the application and class library DLL are both installed client-side on multiple workstations.</p> <h3>The Problem</h3> <p>The catch is that the web service we are accessing uses HTTPS and a valid X509 client certificate needs to be presented to the web service in order to access it. Since all of our components live on the client machine, this has led to deployment problems. For example, we have to download and install per-user certificates on each client machine, one for each user who might need to access the web service through our application. What's more, the web server itself must be accessed through a VPN (OpenVPN in particular), which means a VPN client has to be installed and configured on every client machine. It is a major pain (some of our customers have dozens of workstations).</p> <h3>The Proposed Solution</h3> <p>The proposed solution is to move all of this logic to a central server on the customer site. In this scenario, our legacy application would communicate with a local server, which will then go off and forward requests to the real web service. In addition, all of the X509 certificates would be installed on the server, instead of on each individual client computer, as part of the effort to simplify and centralize deployment.</p> <p>So far, we've come up with three options:</p> <ul> <li>Find a ready-made SOAP proxy server which can take incoming HTTP-based SOAP requests, modify the <code>Host</code> header and routing-related parts of the SOAP message (so they are pointing to the real web server), open an SSL connection to the real web server, present the correct client certificate to the server (based on a username-to-certificate mapping), forward the modified request, read the response, convert it back to plaintext, and send it back to the client.</li> <li>Write a proxy server by hand that does everything I just mentioned.</li> <li>Think of completely different and hopefully better way to solve this problem.</li> </ul> <h3>Rationale</h3> <p>The rationale for trying to find and/or write a SOAP proxy server is that our existing .NET wrapper library wouldn't have to be modified at all. We would simply point it at the proxy server instead of the real web service endpoint, using a plain HTTP connection instead of HTTPS. The proxy server will handle the request, modify it to so that the real web service will accept it (i.e. things like changing the <code>SOAPAction</code> header so that it is correct), handle the SSL/certificate handshake, and send the raw response data back to the client.</p> <p>However, this sounds like an awful hack to me me at best. So, what our my options here?</p> <ul> <li>Do I bite the bullet and write my own HTTP/SSL/SOAP/X509 aware proxy server to do all this?</li> <li>Or...is there a ready-made solution with an extensible enough API that I can easily make it do what I want</li> <li>Or...should I take a completely different approach?</li> </ul> <p>The key issues we are trying to solve are (a) centralizing where certificates are stored to simplify installation and management of certificates and (b) setting things up so that the VPN connection to the web server only occurs from a single machine, instead of needing every client to have VPN client software installed.</p> <p>Note we do not control the web server that is hosting the web service.</p> <p><strong>EDIT</strong>: To clarify, I have already implemented a (rather crappy) proxy server in C# that does meet the requirements, but something feels fundamentally wrong to me about this whole approach to the problem. So, ultimately, I am looking either for reassurance that I am on the right track, or helpful advice telling me I'm going about this the completely wrong way, and any tips for doing it a better way (if there is one, which I suspect there is).</p> http://stackoverflow.com/questions/754502/what-is-the-best-way-to-draw-child-controls-such-as-buttons-within-each-item 0 What is the best way to draw "child" controls (such as buttons) within each item in a WinForms ListBox? Mike Spross 2009-04-16T02:10:21Z 2009-05-11T16:59:47Z <p>I'm writing a simple custom owner-drawn <code>ListBox</code> control and banging my head against the wall trying to figure out how to implement what seems like a straight-foward feature. My custom <code>ListBox</code> is supposed to work similarly to the "Add/Remove Programs" list in Windows XP. That is, it displays a list of items as usual, but when the user selects an item in the list, a clickable button should appear next to the item text. In my case, I'm trying to display an "Import" button next to each item in my <code>ListBox</code>.</p> <p>In order to keep the custom <code>ListBox</code> somewhat encapsulated, I'm trying to display the button by overriding the <code>ListBox.OnDrawItem</code> method (i.e. the button is conceptually part of the list box item), but I can't get it to work quite right.</p> <p>I should note that I'm trying to use a single button for the entire <code>ListBox</code>. When the user selects a item in the list, the <code>OnDrawItem</code> method just re-positions this single button so that it appears next to the selected item. I have it 99% working: the problem now is that when the <code>ListBox</code> is scrolled and the selected item goes off-screen, the button is still drawn to its previous position, so it draws on top of the wrong item. I'm guessing this is because Windows won't try to redraw the selected item if it is off-screen, and thus the repositioning code doesn't get called.</p> <p>Here is trimmed-down version of what I have right now:</p> <pre><code>public partial class EventListBox : ListBox { private Button _importButton; public EventListBox() { InitializeComponent(); this.DrawMode = DrawMode.OwnerDrawVariable; // set up the button that will appear next to the currently-selected item _importButton = new Button(); _importButton.Text = "Import..."; _importButton.AutoSize = true; _importButton.Visible = false; // Add the button as a child control of this ListBox Controls.Add(_importButton); } protected override void OnDrawItem(DrawItemEventArgs e) { if (this.Items.Count &gt; 0) { e.DrawBackground(); // draw item here (omitted) // if drawing the selected item, re-position the "Import" button so that appears // inside the current item, and make it visible if it is hidden. // These checks prevent the resulting repaint that will occur from causing an infinite loop // The problem seems to be that if the ListBox is scrolled such that the selected item // moves off-screen , this code won't run, because it won't repaint the selected item anymore... // This means the button will be painted in its previous position. // The real question is: Is there a better way to approach the whole notion of // rendering buttons within ListBox items? if (e.State &amp; DrawItemState.Selected == DrawItemState.Selected) { _importButton.Top = e.Bounds.Bottom - _importButton.Height - 20; _importButton.Left = e.Bounds.Left; if(!_importButton.Visible) _importButton.Visible = true; } } base.OnDrawItem(e); } protected override void OnMeasureItem(MeasureItemEventArgs e) { base.OnMeasureItem(e); e.ItemHeight = 100; //hard-coded for now... } } </code></pre> <p><strong>Rationale for using a single button</strong></p> <p>I would rather create a separate button for each item in the <code>ListBox</code>, but I can't find any way to track when items are added/removed from the listbox. I couldn't find any relevant <code>ListBox</code> methods that I could override, and I can't re-assign the <code>ListBox.Items</code> property to a custom collection object, since <code>ListBox.Items</code> is read-only. Because of this, I went with the above approach of using a single button and re-positioning it as needed, but as I mentioned, this isn't very robust and breaks easily.</p> <p>My current thinking is it would make the most sense to create a new button at the point when new items are added to the <code>ListBox</code>, and remove buttons when items were removed.</p> <p>Here are some possible solutions I came up with, but is there a better way to implement this?</p> <ul> <li>I could just create my own <code>AddItem</code> and <code>RemoveItem</code> methods directly on my derived <code>ListBox</code> class. I could create a corresponding button each time a new item is added, and remove the item's button in <code>RemoveItem</code>. However, to me, this is an ugly hack, because it forces me to call these special add/remove methods instead of just using <code>ListBox.Items</code>.</li> <li>I could draw a new button manually in <code>OnDrawItem</code> using <code>System.Windows.Forms.ButtonRenderer</code>, but then I have to do a lot of extra work to make it act like a real button, since <code>ButtonRenderer</code> is doing nothing more than drawing the button. Figuring out when the user hovers over this "button", and when it is clicked, seems like it would be difficult to get right.</li> <li>When <code>OnDrawItem</code> is called, I could create a new button if the item being drawn doesn't already have a button associated with it (I could keep track of this with a <code>Dictionary&lt;Item, Button&gt;</code>), but I still need a way to remove unused buttons when their corresponding items are removed from the list. I guess I could iterate over my dictionary of item-button mappings and remove items that don't exist in the <code>ListBox</code> anymore, but then I'm iterating over two lists every time an item in the <code>ListBox</code> is redrawn (ack!).</li> </ul> <p>So, is there a better way to include clickable buttons inside a <code>ListBox'? It's obviously been done before, but I can't find anything useful on Google. The only examples I've seen that have buttons in a </code>ListBox` were WPF examples, but I'm looking for how to do this with WinForms.</p> http://stackoverflow.com/questions/816285/where-is-pythons-best-ascii-for-this-unicode-database/816319#816319 11 Answer by Mike Spross for Where is Python's "best ASCII for this Unicode" database? Mike Spross 2009-05-03T04:16:58Z 2009-05-06T05:00:58Z <p>In my original answer, I also suggested <code>unicodedata.normalize</code>. However, I decided to test it out and it turns out it doesn't work with Unicode quotation marks. It does a good job translating accented Unicode characters, so I'm guessing <code>unicodedata.normalize</code> is implemented using the <code>unicode.decomposition</code> function, which leads me to believe it probably can only handle Unicode characters that are combinations of a letter and a diacritical mark, but I'm not really an expert on the Unicode specification, so I could just be full of hot air... </p> <p>In any event, you can use <code>unicode.translate</code> to deal with punctuation characters instead. The <code>translate</code> method takes a dictionary of Unicode ordinals to Unicode ordinals, thus you can create a mapping that translates Unicode-only punctuation to ASCII-compatible punctuation:</p> <pre><code>'Maps left and right single and double quotation marks' 'into ASCII single and double quotation marks' &gt;&gt;&gt; punctuation = { 0x2018:0x27, 0x2019:0x27, 0x201C:0x22, 0x201D:0x22 } &gt;&gt;&gt; teststring = u'\u201Chello, world!\u201D' &gt;&gt;&gt; teststring.translate(punctuation).encode('ascii', 'ignore') '"hello, world!"' </code></pre> <p>You can add more punctuation mappings if needed, but I don't think you necessarily need to worry about handling every single Unicode punctuation character. If you <em>do</em> need to handle accents and other diacritical marks, you can still use <code>unicodedata.normalize</code> to deal with those characters.</p> http://stackoverflow.com/questions/816164/developing-testing-twitter-apps-without-slamming-the-api/816235#816235 7 Answer by Mike Spross for Developing/Testing Twitter apps without slamming the API Mike Spross 2009-05-03T03:21:46Z 2009-05-03T03:55:52Z <p>I would probably start by mocking the specific parts of the API you need for your application. In fact, this may actually force you to come up with a cleaner design for your app, because it more or less requires you to think about your application in terms of "what" it should do rather than "how" it should do it.</p> <p>For example, if you are using the Twitter Search API, your application most likely should not care whether or not you are using the JSON or the Atom format option. The ability to search Twitter using a given query and get results back represents the functionality you want, so you should mock the API at that level at abstraction. The output format is just an implementation detail.</p> <p>By mocking the API in terms of functionality instead of in terms of low-level implementation details, you can ensure that the application does what you expect it to do, before you actually connect to Twitter for real. At that point, you've already verified that the app works as intended, so the only thing left is to write the code to make the REST requests and parse the responses, which should be fairly straightforward, so you probably won't end up hitting Twitter with a lot of junk data at that point.</p> http://stackoverflow.com/questions/788227/dataset-allowing-null-values-even-when-allowdbnull-false/788334#788334 7 Answer by Mike Spross for Dataset allowing Null values even when AllowDBNull = False? Mike Spross 2009-04-25T06:18:37Z 2009-04-25T06:18:37Z <p><strong>The short answer is:</strong></p> <p><code>System.DBNull.Value != null</code></p> <p><strong>The longer answer is:</strong></p> <p>In C#, the concept of a <code>NULL</code> value in SQL is represented by the <code>Value</code> property of the <code>System.DBNull</code> class. When dealing with a database, the more familiar C# <code>null</code> doesn't actually mean "null value."</p> <p>When you set a database column to <code>null</code>, ADO.NET will actually initialize the column to whatever the default value is for that column (for example, an <code>int</code> column would be initialized to 0). That is, using <code>null</code> can actually cause a non-null value to end up in the database, and therefore you won't get an error.</p> <p>If you instead set a database column to <code>System.DBNull.Value</code>, the column will actually be set to <code>NULL</code>. This is the situation that <code>AllowDBNulls == false</code> will prevent you from doing.</p> http://stackoverflow.com/questions/786431/why-does-my-winsock-control-not-function-correctly-in-vb6-within-the-context-of-a/788191#788191 1 Answer by Mike Spross for Why does my winsock control not function correctly in vb6 within the context of a Form_QueryUnload? Mike Spross 2009-04-25T03:35:11Z 2009-04-25T04:04:02Z <p>You're not waiting for the Winsock control to actually send the "quit" message. The <code>SendData</code> method is asynchronous: it can return before the data has actually been sent across the network. The data is buffered locally on your machine and sent at some later time by the network driver.</p> <p>In your case, you are trying to send the "quit" message and then closing the socket almost immediately afterwards. Because <code>SendData</code> is asynchronous, the call might return before the "quit" message has actually been sent to the server, and therefore the code might close the socket before it has a chance to send the message.</p> <p>It works when you cancel the unloading of the form first and let the timer send the "quit" message because you're giving the socket enough extra time to send the message to the server before the socket is closed. However, I wouldn't count on this always working; it's a coincidence that the extra steps gave the socket enough time to send the message, and it's not guaranteed to always work out that way.</p> <p>You can fix the problem by waiting for the socket to raise a <code>SendCompleted</code> event after you send the "quit" message and before you close the socket. Below is a basic example. Note that the <code>QueryUnload</code> code is much simpler.</p> <pre><code>Private m_bSendCompleted As Boolean Private m_bSocketError As Boolean Private Sub singleSock_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean) 'Set error flag so we know if a SendData call failed because of an error' 'A more robust event handler could also store the error information so that' 'it can be properly logged elsewhere' m_bSocketError = True End Sub Private Sub singleSock_SendCompleted() 'Set send completed flag so we know when all our data has been sent to the server' m_bSendCompleted = True End Sub 'Helper routine. Use this to send data to the server' 'when you need to make sure that the client sends all the data.' 'It will wait until all the data is sent, or until an error' 'occurs (timeout, connection reset, etc.).' Private Sub SendMessageAndWait(ByVal sMessage As String) m_bSendCompleted = False singleSock.SendData sMessage singleSock.SendData sMessage Do Until m_bSendCompleted or m_bSocketError DoEvents Loop If m_bSocketError Then Err.Raise vbObjectError+1024,,"Socket error. Message may not have been sent." End If End Sub Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) 'This is (almost) all the code needed to properly send the quit message 'and ensure that it is sent before the socket is closed. The only thing' 'missing is some error-handling (because SendMessageAndWait could raise an error). If UnloadMode = vbFormControlMenu Then Me.WindowState = vbMinimized Cancel = True Else SendMessageAndWait "quit" &amp; vbCrLf singleSock.Close End If End Sub </code></pre> <p>You can make the code cleaner by putting the logic to send a message and wait for it to be sent in a separate class. This keeps the private variables and the event handlers in one place, instead of having them litter your main code. It also makes it easier to re-use the code when you have multiple sockets. I called the class <code>SynchronousMessageSender</code> for lack of a better name. This example also has more complete error handling:</p> <p><strong>SynchronousMessageSender.cls</strong></p> <pre><code>Private WithEvents m_Socket As Winsock Private m_bAttached As Boolean Private m_bSendCompleted As Boolean Private m_bSocketError As Boolean Private Type SocketError Number As Integer Description As String Source As String HelpFile As String HelpContext As Long End Type Private m_LastSocketError As SocketError 'Call this method first to attach the SynchronousMessageSender to a socket' Public Sub AttachSocket(ByVal socket As Winsock) If m_bAttached Then Err.Raise 5,,"A socket is already associated with this SynchronousMessageSender instance." End If If socket Is Nothing Then Err.Raise 5,,"Argument error. 'socket' cannot be Nothing." End If Set m_Socket = socket End Sub Private Sub socket_SendCompleted() m_bSendCompleted = True End Sub Private Sub socket_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean) m_bSocketError = True 'Store error information for later use' 'Another option would be to create an Error event for this class' 'and re-raise it here.' With m_lastSocketError .Number = Number .Description = Description .Source = Source .HelpFile = HelpFile .HelpContext = HelpContext End With End Sub 'Sends the text in sMessage and does not return' 'until the data is sent or a socket error occurs.' 'If a socket error occurs, this routine will re-raise' 'the error back to the caller.' Public Sub SendMessage(ByVal sMessage As String) If Not m_bAttached Then Err.Raise 5,,"No socket is associated with this SynchronousMessageSender. Call Attach method first." End If m_bSendCompleted = False m_bSocketError = False m_socket.SendData sMessage &amp; vbCrLf 'Wait until the message is sent or an error occurs' Do Until m_bSendCompleted Or m_bSocketError DoEvents Loop If m_bSocketError RaiseLastSocketError End If End Sub Private Sub RaiseLastSocketError() Err.Raise m_lastSocketError.Number, _ m_lastSocketError.Source, _ m_lastSocketError.Description, _ m_lastSocketError.HelpFile, _ m_lastSocketError.HelpContext End Sub </code></pre> <p><strong>Example Use</strong></p> <pre><code>Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Dim sender As New SynchronousMessageSender 'Ignore errors since the application is closing...' On Error Resume Next If UnloadMode = vbFormControlMenu Then Me.WindowState = vbMinimized Cancel = True Else Set sender = New SynchronousMessageSender sender.AttachSocket singleSock sender.SendMessage "quit" singleSock.Close End If End Sub </code></pre> <p>By using a separate class, now all the necessary code can be placed in the <code>Form_QueryUnload</code>, which keeps things tidier.</p> http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over 34 When is it good (if ever) to scrap production code and start over? Mike Spross 2008-09-27T23:29:44Z 2009-04-19T19:43:42Z <p>We have a software product that was written by a single programmer who is no longer with the company, and have we even have a few customers running the software. I was asked to do a code review and report on the feasibility of adding a new feature to the product. The code (written in VB.NET) was an awful mess, and my boss tells me he has been noticing similarly poor code in other projects from this former developer. I know it's easy to nitpick someone else's code, but I'd say it's pretty bad. Some choice bits from my code review:</p> <ul> <li>Abuse of threads: <code>QueueUserWorkItem</code> shows up a lot and is definitely over-used, and Thread-pool delegates have uninformative names such as <code>PoolStart</code> and <code>PoolStart2</code>.</li> <li>Magic numbers and magic stings...everywhere. Almost as if someone didn't know that <code>Const</code> and <code>Enum</code> exist.</li> <li>Global variables: Most variables are declared global and may or may not be initialized depending on what code paths get followed and what order things occur in (all the threads running makes this worse)</li> <li>Compiler warnings: the main solution file contains 500+ warnings.</li> <li>Duplicate classes as well as seemingly half-finished classes.</li> <li>Duplicating our existing core libraries (data access layer, error logging,etc.) with subtle modifications (such as changing parameter data types to suit his preferences) because he wanted a "static" unchanging copy of the core code.</li> <li>Despite duplicating our data access layer code, failed to use it when he actually needed access to the database from his code. Instead, he created a new <code>OleDbReader</code> object every time he needed to query the database.</li> </ul> <p>I'm just scratching the surface here, but my question is simple enough: Would it make more sense to take the time to refactor the existing codebase, focusing on one issue at a time, or would you consider rewriting the entire thing from scratch?</p> <p><strong>EDIT</strong>: To clarify a bit, we do have the original requirements for the project, which is why starting over could be an option. Another way to phrase my question is: Can code ever reach a point where the cost of maintaining it would become greater than the cost of dumping it and starting over?</p> http://stackoverflow.com/questions/754502/what-is-the-best-way-to-draw-child-controls-such-as-buttons-within-each-item/754744#754744 0 Answer by Mike Spross for What is the best way to draw "child" controls (such as buttons) within each item in a WinForms ListBox? Mike Spross 2009-04-16T04:21:26Z 2009-04-16T04:21:26Z <p><strong>One Possible Solution</strong></p> <p>I found a workable solution, and ended up keeping the single button approach for now. I'll post my workaround here, but if anyone has a more elegant answer to my original question, don't hestitate to post it.</p> <p><em>My small epiphany</em></p> <p>After experimenting some more, it seems the issue of the button not getting repositioned properly on scrolling only happens when using the mouse wheel to scroll through the <code>ListBox</code>. Scrolling the "normal" way doesn't seem to reproduce the behavior, but as I couldn't be 100% sure, I included a fix for normal scrolling in my workaround as well.</p> <p><em>My ugly hack of a workaround</em></p> <p>Since I knew the mouse wheel (and scrolling in general) seemed to be at the heart of the issue, I decided to just invalidate my <code>ListBox</code> whenever the <code>ListBox</code> is scrolled or whenever the mouse wheel is moved. This does produce some unsightly flicker, which I would like to get rid of, but I can live with the results for now.</p> <p>I added the following methods to my derived <code>EventListBox</code> class:</p> <pre><code> protected override void WndProc(ref Message m) { const int WM_VSCROLL = 277; if (m.Msg == WM_VSCROLL) { this.Invalidate(); } base.WndProc(ref m); } protected override void OnMouseWheel(MouseEventArgs e) { this.Invalidate(); base.OnMouseWheel(e); } </code></pre> <p>I was a little surprised that <code>ListBox</code> doesn't inherit from <code>ScrollableControl</code> and there wasn't anything like an <code>OnScroll</code> method that I could override, so I did the scroll checking by overriding the <code>WndProc</code> method. The mouse wheel detection was simpler, since there was already an method available to override.</p> <p>Like I said, this is less than ideal as invalidating the listbox each time the list is scrolled causes flicker, and I suspect performance would degrade significantly when the listbox contains a lot of items.</p> <p>I won't accept this answer yet, as I'm curious to see if someone has a better solution.</p> http://stackoverflow.com/questions/695784/how-do-you-recognize-when-the-user-has-changed-the-windows-default-printer-in-vb6/695855#695855 4 Answer by Mike Spross for How do you recognize when the user has changed the Windows Default Printer in VB6 Mike Spross 2009-03-30T02:37:07Z 2009-03-30T05:55:34Z <p>There's an easier way. When your application starts, just set the <code>Printer</code> object's <code>TrackDefault</code> property to <code>True</code>.</p> <pre><code>Public Sub Main() Printer.TrackDefault = True End Sub </code></pre> <p>When the <code>TrackDefault</code> property is <code>True</code>, the <code>Printer</code> object will track changes to the default printer made through the Control Panel automatically.</p> http://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1777962#1777962 Comment by Mike Spross on Java Exceptions, What to catch and what not to? Mike Spross 2009-12-09T05:35:07Z 2009-12-09T05:35:07Z @sleske: I agree that it's generally a bad idea, but as you point out, it &quot;may&quot; be necessary in some cases, which I tried to convey in the wording of the post. I didn't want to necessarily suggest that it should <i>never</i> be done, and as you say, a situation may come along where you find yourself needing to do it for whatever reason. It's up to the person coding it to figure that out for themselves, I can't code it for them :) http://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1777962#1777962 Comment by Mike Spross on Java Exceptions, What to catch and what not to? Mike Spross 2009-12-09T05:07:41Z 2009-12-09T05:07:41Z @CPerkins: That's a good point actually. I edited this advice into the post. http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students/1817140#1817140 Comment by Mike Spross on Why are professors or schools picking Java over C++ to teach to students? Mike Spross 2009-12-01T03:02:21Z 2009-12-01T03:02:21Z @Breton: I'm pretty sure it doesn't. <a href="http://stackoverflow.com/questions/105834/does-the-jvm-prevent-tail-call-optimizations" rel="nofollow" title="does the jvm prevent tail call optimizations">stackoverflow.com/questions/105834/&hellip;</a> seems to confirm this. http://stackoverflow.com/questions/5651/why-are-professors-or-schools-picking-java-over-c-to-teach-to-students/1817140#1817140 Comment by Mike Spross on Why are professors or schools picking Java over C++ to teach to students? Mike Spross 2009-11-30T01:10:41Z 2009-11-30T01:10:41Z @Amir, d03boy: Many imperative languages such as Java aren't optimized to handle recursion well, and provide other means to the same end (i.e. loops), whereas many functional languages, such as Haskell, are designed in a way that <i>encourages</i> and sometimes even <i>requires</i> you to use recursion (i.e. there is no such thing as a loop in Haskell, you must use recursion to iterate). Languages that are designed to support recursion well optimize it heavily to avoid performance problems and excessive memory use. http://stackoverflow.com/questions/1787845/creative-way-to-display-tables-with-35-columns/1787865#1787865 Comment by Mike Spross on Creative way to display tables with 35 columns Mike Spross 2009-11-24T04:54:56Z 2009-11-24T04:54:56Z +1 Was about to post the same answer :) http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771289#1771289 Comment by Mike Spross on What are some bad programming habits to look out for and avoid? Mike Spross 2009-11-21T03:57:23Z 2009-11-21T03:57:23Z Also, I have the same problem mentioned in the answer... http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771289#1771289 Comment by Mike Spross on What are some bad programming habits to look out for and avoid? Mike Spross 2009-11-21T03:56:24Z 2009-11-21T03:56:24Z Is there a term for yak shaving that involves reading about yak shaving? Hmmm, I was going to do something else, but now I need to figure this out. But first I need to check Wikipedia to find out what a yak is. Is it like a cow? Speaking of cows, I can't remember the last time I had a nice steak. Steak...stakes? Stakes...vampires! Which reminds me, what is up with all this Twilight/New Moon hype? And why do werewolves <i>always</i> have to get involved? Were they always the mortal enemies of vampires or is that just Hollywood? But seriously guys: Does anyone have a razor I could borrow? http://stackoverflow.com/questions/1718632/vb6-type-mismatch-in-for-loop-condition/1718686#1718686 Comment by Mike Spross on VB6 Type Mismatch in For loop condition Mike Spross 2009-11-19T03:39:56Z 2009-11-19T03:39:56Z @Timbuck. <code>Array</code> is not a valid identifier in VB6, because it conflicts with the built-in <code>Array</code> function. http://stackoverflow.com/questions/1720201/go-examples-and-idioms/1730300#1730300 Comment by Mike Spross on Go examples and idioms Mike Spross 2009-11-19T00:04:29Z 2009-11-19T00:04:29Z Ah, ignore my last comment. I understand why I'm confused now. I was assuming you would put all the <code>defer</code> statements at the top of the function (sort of like preconditions), which would make the LIFO order kind of weird to deal with. But you are putting a <code>defer</code> statement right after a resource acquisition, then the LIFO order makes perfect sense. So my example would be more like <code>OpenDatabase(); defer CloseDatabase();</code> <code>OpenTable(); defer CloseTable(); DoStuffWithTable();</code>. Then the table is closed first, followed by the closing of the database. That makes <i>way</i> more sense to me now. http://stackoverflow.com/questions/1720201/go-examples-and-idioms/1730300#1730300 Comment by Mike Spross on Go examples and idioms Mike Spross 2009-11-18T23:58:23Z 2009-11-18T23:58:23Z @kaizer: I guess it depends how you read the <code>defer</code> statements in your head :). Since it's in LIFO order, you have to read it &quot;backwards&quot; to see how it's releasing things (<code>defer CloseDatabase; defer CloseTable</code> means &quot;Close the database AFTER you close the table&quot;). If I didn't know any better, I would have written it as <code>defer CloseTable; defer CloseDatabase</code> because my first instinct would be to read it as &quot;Close the table first, THEN close the database.&quot;). But backwards to me is correct to someone else ;) http://stackoverflow.com/questions/1720201/go-examples-and-idioms/1730300#1730300 Comment by Mike Spross on Go examples and idioms Mike Spross 2009-11-15T07:49:59Z 2009-11-15T07:49:59Z Clever, although it would make more sense to me if defer statements where executed in FIFO order (top to bottom), but maybe that's just me... http://stackoverflow.com/questions/1720201/go-examples-and-idioms/1722957#1722957 Comment by Mike Spross on Go examples and idioms Mike Spross 2009-11-15T07:41:24Z 2009-11-15T07:41:24Z @Konrad, beat me to it! :) I've used that idiom in VB6 code before and it definitely can help readability in certain situations. http://stackoverflow.com/questions/1646996/how-to-determine-the-connected-database-type-in-vb6 Comment by Mike Spross on How to determine the connected database type in VB6? Mike Spross 2009-11-10T23:27:36Z 2009-11-10T23:27:36Z @AngryHacker: I think it depends at what level of abstraction database-specific details come into play. For example, an ORM typically keeps all database-specific code separate so that SQL Server code doesn't mix with Oracle code for example. You still need implementation-specific code for each database, but you've added another layer on top of it (the object persistence layer) that stays the same even when the underlying database changes, so you are never mixing code for different databases together - each database-specific data access layer is in a self-contained library. http://stackoverflow.com/questions/956255/why-is-it-bad-practice-to-call-an-eventhandler-from-code/956280#956280 Comment by Mike Spross on Why is it bad practice to call an eventhandler from code? Mike Spross 2009-11-08T06:09:26Z 2009-11-08T06:09:26Z Of course, you can choose to mark your event handlers as <code>Public</code>, but that would go against best practice. The IDE marks the methods as <code>Private</code> to maintain consistency with the COM programming model: i.e. since they are implementing an interface, they should be private within the class itself, since they are not part of the class's own interface, but rather implementations of an interface that is implemented by the class. http://stackoverflow.com/questions/956255/why-is-it-bad-practice-to-call-an-eventhandler-from-code/956280#956280 Comment by Mike Spross on Why is it bad practice to call an eventhandler from code? Mike Spross 2009-11-08T06:02:33Z 2009-11-08T06:02:33Z @jpinto3912: Events are public, but handlers are private. Events are actually methods on a (hidden, but public) event sink interface. The (private) event handler methods are implementations of methods on the (public) event sink interface. Similar to how implementing an interface with the <code>Implements</code> keyword creates <code>Private</code> methods for the implementation by default, except that events and event handlers are treated specially (i.e. you don't have to implement handlers for all the events exposed by a class, the compiler inserts empty event handlers at compile-time).