User Hamish Smith - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:49:24Z http://stackoverflow.com/feeds/user/15572 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801135/what-is-the-meaning-of-o-polylogn-in-particular-how-is-polylogn-defined/1801163#1801163 1 Answer by Hamish Smith for What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined? Hamish Smith 2009-11-26T01:55:31Z 2009-11-26T01:55:31Z <p>The way it is used in <a href="http://www.cs.cmu.edu/~cburch/pub/bbbt%5Fpolylog%5Fmts.abs.html" rel="nofollow">this paper</a> seems to be describing something as:</p> <p>O(log^p n)</p> http://stackoverflow.com/questions/364428/what-is-a-good-way-to-implement-an-agile-database-process-which-is-in-synch-with/1759349#1759349 0 Answer by Hamish Smith for What is a good way to implement an agile database process, which is in synch with the code base, especially in regards to continuous integration? Hamish Smith 2009-11-18T21:53:29Z 2009-11-18T21:53:29Z <p>You could do worse than looking at the K Scott Allen articles I referenced in the <a href="http://stackoverflow.com/questions/504909/database-deployment-strategies-sql-server/504950#504950">answer to this question</a></p> http://stackoverflow.com/questions/1717702/which-addin-is-recommended-for-visual-studio-2008-c/1717759#1717759 0 Answer by Hamish Smith for Which addin is recommended for Visual Studio 2008 (C#) ? Hamish Smith 2009-11-11T20:12:58Z 2009-11-11T20:12:58Z <p>I use the <a href="http://www.mindscape.co.nz/products/vsfileexplorer/" rel="nofollow">Mindscape File Explorer for Visual Studio</a> a fair bit. One less reason to leave the IDE.</p> http://stackoverflow.com/questions/1717107/why-do-we-need-mocking-frameworks/1717183#1717183 0 Answer by Hamish Smith for Why do we need mocking frameworks? Hamish Smith 2009-11-11T18:29:13Z 2009-11-11T18:29:13Z <p>I first grok'd why I needed a mocking framework when I compared writing test doubles by hand for a set of unit tests (each test needed slightly different behaviour so I was creating subclasses of a base fake type for each test) with using something like RhinoMocks or Moq to do the same work. </p> <p>Simply put it was much faster to use a framework to generate all of the fake objects I needed rather than writing (and debugging) my own fakes by hand.</p> http://stackoverflow.com/questions/1712887/which-is-faster-if-else-or-select-case/1712921#1712921 7 Answer by Hamish Smith for Which is faster - if..else or Select..case? Hamish Smith 2009-11-11T03:59:34Z 2009-11-11T03:59:34Z <p>If you compile the two fragments and use reflector to disassemble you will see that they both end up as the practically the same IL. The compiler replaces the <code>if / else</code> with <code>case</code> statement.</p> <p>This kind of micro optimization is highly unlikely to help you if you have performance problems. </p> <p>If you have performance problems then you need to profile the program and find out where the bottlenecks are.</p> <p>If you don't have performance problems, stop sweating this stuff and worry about writing code that is easily understood.</p> http://stackoverflow.com/questions/1623906/programmatically-inspect-net-code/1705216#1705216 0 Answer by Hamish Smith for Programmatically inspect .NET code Hamish Smith 2009-11-10T02:02:13Z 2009-11-10T02:02:13Z <p>What about using the code model in Reflector? With the code model view add-in you should be able to get the idea of how to interrogate the structure of the code.</p> http://stackoverflow.com/questions/1705167/given-a-vector-of-lat-lon-pairs-how-can-i-create-a-vector-so-that-the-distance-b/1705213#1705213 1 Answer by Hamish Smith for Given a vector of Lat/Lon pairs, how can I create a vector so that the distance between points is less than or equal to some constant? Hamish Smith 2009-11-10T02:00:23Z 2009-11-10T02:00:23Z <p>The first answer on <a href="http://bytes.com/topic/visual-basic-net/answers/368097-distance-formula-long-lat-coord" rel="nofollow">this post</a> has the formula for calculating angles and distance from lat/long pairs.<br> From the distance and angle calculated here it should be possible to find a point at a specified distance along that angle.<br> The calculation assumes a perfectly spherical Earth so if your long/lat datum are from a specific projection other than spherical mercator then the calculation may give inaccurate results.</p> http://stackoverflow.com/questions/1523256/how-can-we-build-such-an-extremely-complex-sql-statement/1523289#1523289 0 Answer by Hamish Smith for How can we build such an extremely complex SQL statement? Hamish Smith 2009-10-06T02:09:46Z 2009-10-06T20:14:58Z <p>See @Pax's answer for a nicer way to handle the null / zero values for sub_category_id</p> <pre><code>select isbn, a.name as author_name, c.name as category_name, sc.name as subcategory_name, price from Book join Author a on isbn = a.isbn join Category c on category_id = c.category_id join SubCategory sc on category_id = sc.category_id and subcategory_id = sc.subcategory_id where subcategory_id != 0 union select isbn, a.name as author_name, c.name as category_name, '' as subcategory_name, price from Book join Author a on isbn = a.isbn join Category c on category_id = c.category_id join SubCategory sc on category_id = sc.category_id and subcategory_id = sc.subcategory_id where subcategory_id = 0 </code></pre> http://stackoverflow.com/questions/1495384/personal-matters/1495404#1495404 4 Answer by Hamish Smith for Personal matters Hamish Smith 2009-09-29T23:08:13Z 2009-09-29T23:08:13Z <p>Ask your boss what counseling services are available. A lot of employers pay for their employees to see counselors as it is in the interest of the business to get you back into a good place so you can be productive.<br /> If there is nothing through your employer then seek out the services of a counselor yourself. If you can't think about anything else then it's time to try to sort through these personal issues.</p> http://stackoverflow.com/questions/1495143/binding-connecting-using-sockets-in-vb-net/1495163#1495163 2 Answer by Hamish Smith for Binding & connecting using sockets in vb.net Hamish Smith 2009-09-29T21:55:27Z 2009-09-29T22:18:01Z <p>Does the code ever assign a new instance of Socket to the Sock variable? sounds like the object is null because no assignment has been made to the variable.</p> <p><strong>EDIT</strong><br /> Initializing the socket could be done like this:</p> <pre><code> sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Udp) </code></pre> <p>Assuming that you are using IPV4 and that you want to read and write bytes from the socket like a stream. As for the protocol... I've specified UDP here but that will depend on what you are trying to talk to.</p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/106594#106594 0 Answer by Hamish Smith for What are the best programming and development related Blogs? Hamish Smith 2008-09-20T00:42:55Z 2009-09-20T22:59:13Z <p>Even though I don't write any Ruby, I am really missing <a href="http://weblog.raganwald.com/2008/05/narcissism-of-small-code-differences.html" rel="nofollow">raganwald</a> because of the thought provoking posts, the fact that I ended up learning things that would never have come up just reading .NET blogs, and because the links he posted were always worth a read. </p> <p>Thankfully it looks like he's thinking about starting up a <a href="http://homoiconic.com/" rel="nofollow">new blog</a>.</p> http://stackoverflow.com/questions/1370449/debug-writeline-not-working/1370508#1370508 2 Answer by Hamish Smith for Debug.WriteLine not working Hamish Smith 2009-09-02T22:34:58Z 2009-09-02T22:34:58Z <p>Do you definitely have the DEBUG constant defined? Check under project properties > Compile > Advanced Compile Options (there's a checkbox for the DEBUG constant, if it isn't checked your Debug.XXX statements will not be executed).</p> http://stackoverflow.com/questions/1223245/assembly-versioning-with-teamcity/1230211#1230211 1 Answer by Hamish Smith for Assembly Versioning with TeamCity Hamish Smith 2009-08-04T22:24:06Z 2009-08-31T23:09:56Z <p>We're using CruiseControl.net and SVN. We drive it the other way. We are using the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuildCommunityTasks</a> Version task in an MSBuild script to increment the version number for CI builds and using that version number to tag the source code. </p> <p><strong>EDIT:</strong> Asked for more detail on MSBuild targets...<br /> We use a separate script that is for the CI build and is not used for the developer builds. We tried using different targets in the MSBuild files that studio uses as project files but this got to be a headache and required manual editing of files that studio was generating.<br /> The structure of the MSBuild file is pretty straightforward:</p> <ol> <li><p>Import extra pieces</p> <p><code>&lt;Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets" /&gt;</code><br /> <code>&lt;!-- contains some variables that set project names, paths etc. --&gt;</code><br /> <code>&lt;Import Project="Properties.msbuild"/&gt;</code> </p></li> <li><p>BeforeBuild: set new version number and rewrite the AssemblyInfo file </p> <p><code>&lt;Version VersionFile="$(VersionFile)" BuildType="None" RevisionType="Increment"&gt;</code><br /> <code>&lt;Output TaskParameter="Major" PropertyName="Major" /&gt;</code><br /> <code>&lt;Output TaskParameter="Minor" PropertyName="Minor" /&gt;</code><br /> <code>&lt;Output TaskParameter="Build" PropertyName="Build" /&gt;</code><br /> <code>&lt;Output TaskParameter="Revision" PropertyName="Revision" /&gt;</code><br /> <code>&lt;/Version&gt;</code> </p> <p><code>&lt;!--Modify Assembly Info--&gt;</code><br /> <code>&lt;AssemblyInfo CodeLanguage="CS"</code><br /> <code> OutputFile="Properties\AssemblyInfo.cs"</code><br /> <code> AssemblyTitle="$(TargetAssembly)"</code><br /> <code> AssemblyDescription="$(AssemblyDescription) svn:@(SanitizedSvnUrl) revision:$(SvnRevision)"</code><br /> <code> AssemblyCompany="Your company name"</code><br /> <code> AssemblyProduct="Name of product"</code><br /> <code> AssemblyCopyright="Copyright © your company 2009"</code><br /> <code> ComVisible="false" Guid="$(WindowGuid)"</code><br /> <code> AssemblyVersion="$(Major).$(Minor).$(Build).$(Revision)"</code><br /> <code> AssemblyFileVersion="$(Major).$(Minor).$(Build).$(Revision)"</code><br /> <code> Condition="$(Revision) != '0' " /&gt;</code> </p></li> <li><p>Build: build the actual project file MSBuild script in release mode </p></li> <li><p>AfterBuild: we run our unit test projects (as a guard against creating tags for broken builds in the next steps), use the SvnInfo tasks and some RegexReplace tasks to set some variables up with paths and tag names, and use the SvnCopy task to create the tag. </p></li> </ol> <p><code>&lt;SvnCopy UserName="username"</code><br /> <code> Password="password"</code><br /> <code> SourcePath="@(SvnTrunkPath)"</code><br /> <code> DestinationPath="@(SvnTagsPath)/BUILD-$(TargetAssembly)-$(Major).$(Minor).$(Build).$(Revision)" Message="Tagging successful build" /&gt;</code> </p> http://stackoverflow.com/questions/1286057/continuous-builds-and-agile-vs-commit-often/1286098#1286098 0 Answer by Hamish Smith for Continuous builds and Agile vs commit often Hamish Smith 2009-08-17T03:57:46Z 2009-08-17T03:57:46Z <p>For a significant or large change that is likely to break dependent pieces of code a branch would be appropriate. At the point where you want to integrate this change and check into the trunk or whatever integration branch you are going to promote it to, having addressed the breakages and having the tests all working is essential.<br /> I don't think the two things should be working against each other. Use of branches or distributed source control would make this easier to manage.</p> http://stackoverflow.com/questions/1265280/how-to-save-image-to-folder/1265312#1265312 1 Answer by Hamish Smith for How to save image to folder Hamish Smith 2009-08-12T10:06:18Z 2009-08-12T10:23:41Z <p><strong>EDIT</strong> trigger happy. you don't need to save it from the bitmap. the file is already there. just copy the file.</p> <p>If I understand your question then you want to save the image from before you manipulate it to a new location on the server.</p> <p>That file already exists as a file on the server. The file location of that file is passed into your function as a parameter (strInputFilePath). </p> <p>The simplest thing to do would to use <a href="http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx" rel="nofollow">File.Copy()</a> to copy the file to the desired location.</p> http://stackoverflow.com/questions/1261357/ninject-kernel-binding-overrides/1263961#1263961 0 Answer by Hamish Smith for Ninject kernel binding overrides Hamish Smith 2009-08-12T02:46:13Z 2009-08-12T02:46:13Z <p>I would add a constructor to MyClass that accepts a Module.<br /> This wouldn't be used in production but would be used in test.<br /> In the test code I would pass a Module that defined the test doubles required.</p> http://stackoverflow.com/questions/1263350/cryptography-best-practices-for-keys-in-memory/1263458#1263458 3 Answer by Hamish Smith for Cryptography: best practices for keys in memory? Hamish Smith 2009-08-11T23:04:00Z 2009-08-11T23:04:00Z <p>If you are serious about security then you might consider a separate cryptographic subsystem. Preferably one that is <a href="http://en.wikipedia.org/wiki/FIPS%5F140" rel="nofollow">FIPS 140-2/3</a> certified (<a href="http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140val-all.htm" rel="nofollow">list of certified modules</a>).<br /> Then the key is held in tamper proof memory (non-extractable) and all cryptographic operations are performed inside the crypto boundary.<br /> Expensive but for some applications necessary.</p> http://stackoverflow.com/questions/1263364/c-break-out-of-foreach-loop-after-x-number-of-items/1263373#1263373 17 Answer by Hamish Smith for C# Break out of foreach loop after X number of items Hamish Smith 2009-08-11T22:39:15Z 2009-08-11T22:59:25Z <pre><code>int processed = 0; foreach(ListViewItem lvi in listView.Items) { //do stuff ++processed; if (processed == 50) break; } </code></pre> <p>or use LINQ</p> <pre><code>foreach( ListViewItem lvi in listView.Items.Cast&lt;ListViewItem&gt;().Take(50)) { //do stuff } </code></pre> <p>or just use a regular for loop (as suggested by @sgriffinusa and @Eric J.)</p> <pre><code>for(int i = 0; i &lt; 50 &amp;&amp; i &lt; listView.Items.Count; i++) { ListViewItem lvi = listView.Items[i]; } </code></pre> http://stackoverflow.com/questions/1263326/break-long-code-lines-in-visual-studio-2008/1263346#1263346 0 Answer by Hamish Smith for Break Long code lines in Visual Studio 2008 Hamish Smith 2009-08-11T22:31:38Z 2009-08-11T22:31:38Z <p>C# doesn't need any line continuation characters (the way basic does). Just insert a line break anywhere in the line. </p> <pre><code>public static somemethod(type param1, type param2, type param3) { } </code></pre> <p>works just fine. </p> <p>If you look at linq and fluent interface samples you will see some idiomatic ways to break long lines:</p> <pre><code>builder .AddSomething() .If((z) =&gt; z.SomeCondition) .AddSomethingElse(); </code></pre> http://stackoverflow.com/questions/1257996/moderate-encryption-for-a-small-amount-of-data/1258041#1258041 1 Answer by Hamish Smith for moderate encryption for a small amount of data Hamish Smith 2009-08-11T01:20:40Z 2009-08-11T01:20:40Z <p>You are going to need to ask some more questions. </p> <p>Questions to ask:<br /> How secure does this need to be?<br /> Does anyone else have access to the binaries and the data?<br /> Who are you protecting this from? </p> <p>Encryption is hard and expensive. Implementing security will most likely impose some level of pain on the end user. </p> <p>You need to think about the master key: how secure is it? where is it stored? how is it backed up? does it need to be backed up?<br /> Some of this comes back to the value of the data and whether the user cares about getting the data back if the machine dies. </p> <p>You could look at <a href="http://en.wikipedia.org/wiki/Tiny%5FEncryption%5FAlgorithm" rel="nofollow">TEA</a>.<br /> You could generate a random AES key (however long you want) and store this as not-extractable in the machine key store and use the built in <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.cryptostream%28VS.95%29.aspx" rel="nofollow">CryptoStream</a> as suggested by @Reed Copsey. </p> <p>I think that it is very important to work out what sorts of attacks you need to be resistant against and how much the customer values protecting the data.</p> http://stackoverflow.com/questions/1252972/should-i-be-using-libraries-if-im-trying-to-learn-how-to-program/1252983#1252983 1 Answer by Hamish Smith for Should I be using libraries if I'm trying to learn how to program? Hamish Smith 2009-08-10T03:21:19Z 2009-08-10T03:21:19Z <p>Standing on the shoulders of giants isn't a bad thing. If you value your productivity (and your future employers certainly will) then learn a valuable skill by nurturing your ability to explore the capabilities of libraries, learn their idioms and get maximum return on your time.<br /> Every bit of (quality, tested) library code that you successfully integrate into your solution is more time you can spend on really nailing the specific problem at hand and providing value to your end users.</p> http://stackoverflow.com/questions/1237122/intptr-cast-vs-new/1237138#1237138 3 Answer by Hamish Smith for IntPtr cast vs. new Hamish Smith 2009-08-06T05:37:02Z 2009-08-06T05:37:02Z <p><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> says that the cast is calling the constructor under the hood anyway:</p> <pre><code>[Serializable, StructLayout(LayoutKind.Sequential), ComVisible(true)] public struct IntPtr : ISerializable { ... [ReliabilityContract(Consistency.MayCorruptInstance, Cer.MayFail)] public static explicit operator IntPtr(int value) { return new IntPtr(value); } } </code></pre> http://stackoverflow.com/questions/1231171/sha1-c-method-equivalent-in-perl/1231249#1231249 4 Answer by Hamish Smith for SHA1 C# method equivalent in Perl? Hamish Smith 2009-08-05T04:50:35Z 2009-08-05T04:50:35Z <p>The only difference I can see (from running the code under Visual Studio 2008) is that the C# code is returning the hex string with alphas in uppercase</p> <blockquote> <p>D3395867D05CC4C27F013D6E6F48D644E96D8241</p> </blockquote> <p>and the perl code is using lower case for alphas</p> <blockquote> <p>d3395867d05cc4c27f013d6e6f48d644e96d8241</p> </blockquote> <p>The format string used in the C# code is asking for uppercase ("X" as opposed to "x"):</p> <p><code>hex.AppendFormat("{0:X}", b);</code></p> <p>Maybe the code at the website is using a case sensitive comparison? I assume it would be trivial for you to convert the output from the CPAN function to uppercase before you submit it?</p> http://stackoverflow.com/questions/1230559/reading-scanner-input/1230572#1230572 2 Answer by Hamish Smith for Reading Scanner input Hamish Smith 2009-08-05T00:19:36Z 2009-08-05T00:19:36Z <p>It's going to depend on the manufacturer of the device. You'd be best off looking to the manufacturer for some API documentation and example code. See this <a href="http://channel9.msdn.com/forums/TechOff/69898-Barcode-in-NET/?CommentID=69977" rel="nofollow">channel9 thread for some links and some more info</a>.</p> http://stackoverflow.com/questions/1225294/c-find-a-file-within-all-possible-folders/1225308#1225308 4 Answer by Hamish Smith for c# Find a file within all possible folders? Hamish Smith 2009-08-04T00:52:23Z 2009-08-04T01:44:13Z <p>This code fragment retrieves a list of all logical drives on the machine and then searches all folders on the drive for files that match the filename "Cheese.exe". Once the loop has completed, the List "files" contains the </p> <pre><code> var files = new List&lt;string&gt;(); //@Stan R. suggested an improvement to handle floppy drives... //foreach (DriveInfo d in DriveInfo.GetDrives()) foreach (DriveInfo d in DriveInfo.GetDrives().Where(x =&gt; x.IsReady == true)) { files.AddRange(Directory.GetFiles(d.RootDirectory.FullName, "Cheese.exe", SearchOption.AllDirectories)); } </code></pre> http://stackoverflow.com/questions/1220647/how-do-you-prototype-your-software-ui/1220695#1220695 2 Answer by Hamish Smith for How do you prototype your software UI? Hamish Smith 2009-08-03T04:48:10Z 2009-08-03T04:48:10Z <p>Pen and paper or a whiteboard. Prefer mockups to be reasonably divorced from the final products look and feel. While discussing interactions and how many clicks it takes to get a job done it's very fast to change paper mock ups and its obvious to all concerned that this doesn't represent the final product being almost finished.<br /> Years ago I was involved in a project where we produced a really detailed GUI mock up that even had some code behind it to simulate the flow of events. It was fantastic for getting the users of the software to give feedback and input. It was then an absolute nightmare for the project because we were constantly behind where the users expected us to be, after all they had already seen it pretty much working, right?<br /> Worst of all, some of that throwaway code ended up being included in the released product and was a nightmare to maintain later (there wasn't much thought put into structuring it originally 'cos it was throwaway, then the user had seen the behavior and it became the de-facto implementation of the logic for a major piece of the system. Yuk.</p> http://stackoverflow.com/questions/1219882/using-mvc-mvp-patterns-in-winforms/1219982#1219982 0 Answer by Hamish Smith for using MVC MVP patterns in winforms Hamish Smith 2009-08-02T22:02:46Z 2009-08-02T22:02:46Z <p>Start by reading <a href="http://martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">Martin Fowler's comparative article on different GUI Architectures</a>. It covers MVC (as MVP used to be called) and a lot of other useful information that should help to frame the concepts for you.</p> http://stackoverflow.com/questions/367523/how-to-ensure-an-event-is-only-subscribed-to-once/367542#367542 6 Answer by Hamish Smith for How to ensure an event is only subscribed to once. Hamish Smith 2008-12-15T05:24:29Z 2009-07-30T19:20:41Z <p>If you are talking about an event on a class that you have access to the source for then you could place the guard in the event definition.</p> <pre><code>private bool _eventHasSubscribers = false; private EventHandler&lt;MyDelegateType&gt; _myEvent; public event EventHandler&lt;MyDelegateType&gt; MyEvent { add { if (_myEvent == null) { _myEvent += value; } } remove { _myEvent -= value; } } </code></pre> <p>That would ensure that only one subscriber can subscribe to the event on this instance of the class that provides the event.</p> <p><strong>EDIT</strong> please see comments about why the above code is a bad idea and not thread safe.</p> <p>If your problem is that a single instance of the client is subscribing more than once (and you need multiple subscribers) then the client code is going to need to handle that. So replace </p> <blockquote> <p><em>not already subscribed</em></p> </blockquote> <p>with a bool member of the client class that gets set when you subscribe for the event the first time.</p> <p><strong>Edit (after accepted):</strong> Based on the comment from @Glen T (the submitter of the question) the code for the accepted solution he went with is in the client class:</p> <pre><code>if (alreadySubscribedFlag) { member.Event += new MemeberClass.Delegate(handler); } </code></pre> <p>Where alreadySubscribedFlag is a member variable in the client class that tracks first subscription to the specific event. People looking at the first code snippet here, please take note of @Rune's comment - it is not a good idea to change the behavior of subscribing to an event in a non-obvious way.</p> <p><strong>EDIT 31/7/2009:</strong> Please see comments from @Sam Saffron. As I already stated and Sam agrees the first method presented here is not a sensible way to modify the behavior of the event subscription. The consumers of the class need to know about its internal implementation to understand its behavior. Not very nice.<br /> @Sam Saffron also comments about thread safety. I'm assuming that he is referring to the possible race condition where two subscribers (close to) simultaneously attempt to subscribe and they may both end up subscribing. A lock could be used to improve this. If you are planning to change the way event subscription works then I advise that you <a href="http://stackoverflow.com/questions/1037811/c-thread-safe-events">read about how to make the subscription add/remove properties thread safe</a>.</p> http://stackoverflow.com/questions/1204451/a-good-tutorial-for-making-a-vb-net-app-to-read-write-sql-db/1204484#1204484 1 Answer by Hamish Smith for a good tutorial for making a vb.net app to read / write SQL db Hamish Smith 2009-07-30T04:45:25Z 2009-07-30T04:45:25Z <p>The usual sample database for SQL Server is called "Northwind". It is used extensively in example applications for SQL Server, ASP.NET, ASP.NET MVC, WinForms apps and others.<br /> A google search of Northwind + vb.net will quickly find you a few interesting tutorials like these:</p> <p><a href="http://www.developer.com/net/vb/article.php/3558771" rel="nofollow">WinForms databinding</a><br /> <a href="http://www.microsoft.com/downloads/details.aspx?familyid=08E3D5F8-033D-420B-A3B1-3074505C03F3&amp;displaylang=en" rel="nofollow">Microsoft VB.NET code samples</a></p> http://stackoverflow.com/questions/1198161/where-to-get-the-keycode-for-keyboard-hook-in-c/1198171#1198171 5 Answer by Hamish Smith for where to get the keycode for keyboard hook in c# Hamish Smith 2009-07-29T05:21:58Z 2009-07-29T19:52:46Z <p>Start by looking at the definition of the callback <a href="http://msdn.microsoft.com/en-us/library/ms644985%28VS.85%29.aspx" rel="nofollow">LowLevelKeyboardProc</a>.<br /> Then examine the definition of the struct that is your <a href="http://msdn.microsoft.com/en-us/library/ms644967%28VS.85%29.aspx" rel="nofollow">lparam</a>.<br /> From there you can see that vkcode is a virtual key code. There is <a href="http://msdn.microsoft.com/en-us/library/dd375731%28VS.85%29.aspx" rel="nofollow">a list of those on MSDN as well</a>.</p> <p><strong>EDIT:</strong> As per comment, updated link to point to Windows Keyboard Input section of MSDN rather than the Windows CE Keyboard Input section of MSDN.</p> http://stackoverflow.com/questions/1719834/plz-give-me-the-solution-for-this Comment by Hamish Smith on plz give me the solution for this Hamish Smith 2009-11-12T04:32:03Z 2009-11-12T04:32:03Z Please try searching for answers before posting new questions. &quot;columns to rows&quot; yields the following questions that are probably relevant: <a href="http://stackoverflow.com/questions/3470/transform-columns-into-rows" rel="nofollow" title="transform columns into rows">stackoverflow.com/questions/3470/&hellip;</a> <a href="http://stackoverflow.com/questions/560621/sql-convert-column-to-row" rel="nofollow" title="sql convert column to row">stackoverflow.com/questions/560621/&hellip;</a> <a href="http://stackoverflow.com/questions/1578500/how-to-select-columns-as-rows" rel="nofollow" title="how to select columns as rows">stackoverflow.com/questions/1578500/&hellip;</a> (there are a bunch more) http://stackoverflow.com/questions/1596863/working-pattern-of-yield-return/1596874#1596874 Comment by Hamish Smith on working pattern of yield return Hamish Smith 2009-10-20T20:18:05Z 2009-10-20T20:18:05Z @Joren: that's an example of the reputation system working well. People know @Marc Gravell from his previous posts, he says he will write it out longhand, that is the a good way to explain it, and 'cos he's doing it that means we don't have to do it. http://stackoverflow.com/questions/1518157/what-is-this-testing-error Comment by Hamish Smith on What is this testing error? Hamish Smith 2009-10-05T03:55:40Z 2009-10-05T03:55:40Z sounds like time to run the unit tests in the nunit test runner or to debug the unit tests http://stackoverflow.com/questions/1408004/using-xpath-in-c-net Comment by Hamish Smith on Using XPath in C#.NET Hamish Smith 2009-09-10T22:14:01Z 2009-09-10T22:14:01Z The advantages of using XPath as compared to what? Would you otherwise iterate and search through nodes using the DOM, would you use LINQ to xml? What are you comparing XPath with? http://stackoverflow.com/questions/1370449/debug-writeline-not-working/1370508#1370508 Comment by Hamish Smith on Debug.WriteLine not working Hamish Smith 2009-09-03T02:57:34Z 2009-09-03T02:57:34Z No, custom constants is for custom compilation constants. The TRACE and DEBUG constants are built in http://stackoverflow.com/questions/1223245/assembly-versioning-with-teamcity/1230211#1230211 Comment by Hamish Smith on Assembly Versioning with TeamCity Hamish Smith 2009-08-31T22:35:22Z 2009-08-31T22:35:22Z @arconaut: thanks. Nothing in my answer is saying that @Tim Long should use CC.NET, I merely prefaced the answer with the tools that I am using so that it was clear why the answer wasn't specifically about TeamCity. http://stackoverflow.com/questions/1275528/c-net-db-connection-with-sql-server-2005-mdf-file Comment by Hamish Smith on C#.net db connection with sql server 2005 MDF file Hamish Smith 2009-08-14T01:06:10Z 2009-08-14T01:06:10Z Can you include the exact error message that you received in the question please? Any answers offered with so little information would be informed guesswork. http://stackoverflow.com/questions/1274914/is-it-bad-form-to-return-arrays-in-c-should-i-return-listt/1274923#1274923 Comment by Hamish Smith on Is it bad form to return Arrays in C#? Should I return List<T>? Hamish Smith 2009-08-13T22:23:20Z 2009-08-13T22:23:20Z @Reed Copsey: Oops, markdown ate my generics. Now I know how to do that inline. But this isn't really adding anything now (your answer seems to have it covered). http://stackoverflow.com/questions/1265280/how-to-save-image-to-folder Comment by Hamish Smith on How to save image to folder Hamish Smith 2009-08-12T10:25:00Z 2009-08-12T10:25:00Z Is a method called CreateThumbnails really the right place to be making a copy of the master image? You might want to do that somewhere else (or change the name of the method) http://stackoverflow.com/questions/1264894/vb-net-class-library Comment by Hamish Smith on vb.net class library Hamish Smith 2009-08-12T09:13:41Z 2009-08-12T09:13:41Z Are you talking about using code access security? Do you want to allow this other person to use your dll or prevent them from using your dll? http://stackoverflow.com/questions/1263364/c-break-out-of-foreach-loop-after-x-number-of-items Comment by Hamish Smith on C# Break out of foreach loop after X number of items Hamish Smith 2009-08-12T04:44:26Z 2009-08-12T04:44:26Z @Tim Jarvis, I don't think you're disrespecting me. What you are saying (and it's a valid response to the question) is that @Jade M is asking the wrong question. Rather than &quot;How do I break out of a foreach loop?&quot; the real question is &quot;What iterative code construct should I use if I want to iterate for a known maximum of iterations?&quot; http://stackoverflow.com/questions/1237318/problem-with-using-svn-with-vs-net-to-version-compiled-code-svn-folder-conflic/1238004#1238004 Comment by Hamish Smith on Problem with using SVN with VS.NET to version compiled code - .svn folder conflict with /bin Hamish Smith 2009-08-06T10:08:41Z 2009-08-06T10:08:41Z Adding an answer in reserved for... adding an answer. If you want to reply to one of the people that answered your question or make a general comment, then add a comment. http://stackoverflow.com/questions/1225612/git-ssh-cygwin-and-folders-outside-of-cygdrive-install-folders/1231028#1231028 Comment by Hamish Smith on Git,ssh,Cygwin and folders outside of Cygdrive install folders Hamish Smith 2009-08-05T03:44:24Z 2009-08-05T03:44:24Z please don't post comments on other answers as answers, add them as comments on the answers. That way they won't get downvoted and the person whose answer you are commenting on will be alerted that you have commented on it. http://stackoverflow.com/questions/1225395/vb-net-winforms-listview-question Comment by Hamish Smith on VB.NET WinForms ListView Question Hamish Smith 2009-08-04T01:46:47Z 2009-08-04T01:46:47Z It might help if you added the code that you already have (where you create the columns for the ListView) http://stackoverflow.com/questions/1225294/c-find-a-file-within-all-possible-folders/1225308#1225308 Comment by Hamish Smith on c# Find a file within all possible folders? Hamish Smith 2009-08-04T01:02:01Z 2009-08-04T01:02:01Z yeah, some exception handling will be necessary - the fragment will fail on most machines because the floppy drive isn't ready. It shows the syntax for the GetFiles method though, which is what is needed.