User VVS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:15:44Z http://stackoverflow.com/feeds/user/21038 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1629205/windows-forms-create-the-main-application-after-login-which-form-to-run/1629262#1629262 2 Answer by VVS for Windows Forms: create the main application after login, which form to run? VVS 2009-10-27T07:40:27Z 2009-10-27T07:43:58Z <p>The <code>ApplicationContext</code> class is what you need. There's an <code>Application.Run(ApplicationContext)</code> overload you can call.</p> <p>See here for an example: <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.applicationcontext.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.applicationcontext.aspx</a></p> http://stackoverflow.com/questions/676616/enumerate-mapped-printers-for-a-specific-terminal-server-session 1 Enumerate mapped printers for a specific Terminal Server session VVS 2009-03-24T09:11:04Z 2009-10-05T13:00:21Z <p>I am looking for a way to see what printers a specific user has mapped into his or her TS session.</p> <p>How can I achieve this with WMI (via PowerShell) or VB-Script? Is there a built-in way I'm not aware of?</p> <p><strong>EDIT</strong>: In our construct mapping of local printers by the RDP-Client is disabled. Users get their printers created during login via VBS-Script and deleted during logoff. </p> <p>So there's no printers installed directly on our TS server and querying the Win32_Printers WMI class returns nothing. The printers are installed on a dedicated print server. Querying the printers on that server returns ALL printers and not the one mapped for a single user.</p> http://stackoverflow.com/questions/160711/net-time-sinkholes/162243#162243 1 Answer by VVS for .NET time sinkholes? VVS 2008-10-02T13:24:45Z 2009-09-24T00:23:00Z <p>This is not a quirk of the framework, but:</p> <p><strong>Cross-thread operations in C# 1.0</strong>. There are so many weird bugs because I didn't know better :)</p> <p>The C# 2.0 compiler saved my day by finding these at compile-time.</p> http://stackoverflow.com/questions/1286354/how-to-make-my-application-copy-file-faster/1286504#1286504 1 Answer by VVS for How to make my application copy file faster. VVS 2009-08-17T06:55:57Z 2009-08-17T06:55:57Z <p>If you run <a href="http://technet.microsoft.com/de-de/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> you can see the block sizes that Windows Explorer or TeraCopy are using. </p> <p>In Vista the default block size for the local network is afair 2 MB, which makes copying files over a huge pipe a lot faster.</p> http://stackoverflow.com/questions/1271001/any-good-net-packet-sniffers-around/1271019#1271019 4 Answer by VVS for Any good .net packet sniffers around? VVS 2009-08-13T09:37:46Z 2009-08-13T09:37:46Z <p>Take a look at <a href="http://www.tamirgal.com/blog/page/SharpPcap.aspx" rel="nofollow">SharpPcap</a>, which is a .NET-Wrapper for <a href="http://www.winpcap.org/" rel="nofollow">WinPcap</a>.</p> http://stackoverflow.com/questions/1175873/c-parametrized-string-with-spaces-only-between-full-parameters/1175878#1175878 2 Answer by VVS for C#: parametrized string with spaces only between "full" parameters? VVS 2009-07-24T05:37:59Z 2009-07-24T19:53:16Z <pre><code>"Hello {0} {1}{3}{2}" </code></pre> <p>where</p> <pre><code>{3} = param1.IsNullOrEmpty() ? "" : " " </code></pre> http://stackoverflow.com/questions/1104549/c-xmldocument-nodes/1104577#1104577 0 Answer by VVS for C# XmlDocument Nodes VVS 2009-07-09T15:20:27Z 2009-07-09T15:20:27Z <p>Build two separate XML documents and concatenate their string representation.</p> http://stackoverflow.com/questions/1072806/sql-server-calculation-with-numeric-literals 3 SQL Server: Calculation with numeric literals VVS 2009-07-02T06:34:28Z 2009-07-02T15:19:31Z <p>I did some testing with floating point calculations to minimize the precision loss. I stumbled across a phenomen I want to show here and hopefully get an explanation.</p> <p>When I write </p> <pre><code>print 1.0 / (1.0 / 60.0) </code></pre> <p>the result is</p> <pre><code>60.0024000960 </code></pre> <p>When I write the same formula and do explicit casting to <code>float</code></p> <pre><code>print cast(1.0 as float) / (cast(1.0 as float) / cast(60.0 as float)) </code></pre> <p>the result is</p> <pre><code>60 </code></pre> <p><hr /></p> <p>Until now I thought that numeric literals with decimal places are automatically treated as <code>float</code> values with the appropriate precision. Casting to <code>real</code> shows the same result as casting to <code>float</code>.</p> <ul> <li>Is there some documentation on how SQL Server evaluates numeric literals?</li> <li>Of what datatype are those literals?</li> <li>Do I really have to cast them to <code>float</code> get better precision (which sounds like irony to me :)?</li> <li>Is there an easier way than cluttering my formulas with casts?</li> </ul> http://stackoverflow.com/questions/1072855/how-to-lock-the-mainthread-in-c-application/1072875#1072875 0 Answer by VVS for How to lock the MainThread in C# Application ? VVS 2009-07-02T06:55:00Z 2009-07-02T06:55:00Z <p>I'm not sure if I correctly understand your question, but..</p> <p>Blocking automatically happens in your thread if you don't explicitely call a method asynchronously. Blocking is no feature in this context but a consequence.</p> <p>The use of <code>lock</code> in your sample is for explicit access to a variable in an asynchronous context.</p> http://stackoverflow.com/questions/1064482/nullreferenceexception-in-c-dealing-with-xml/1064584#1064584 1 Answer by VVS for NullReferenceException in C# Dealing with XML VVS 2009-06-30T16:07:17Z 2009-06-30T16:07:17Z <p>The XML file in your sample returns some <code>station</code> elements with no <code>icao</code> descendant so sometimes <code>station.Element("icao")</code> will return null.</p> http://stackoverflow.com/questions/1063196/c-how-do-you-pronounce/1063201#1063201 6 Answer by VVS for C#: How do you pronounce => VVS 2009-06-30T11:37:34Z 2009-06-30T11:37:34Z <p><a href="http://blogs.msdn.com/ericlippert/archive/2008/05/16/reading-code-over-the-telephone.aspx" rel="nofollow">http://blogs.msdn.com/ericlippert/archive/2008/05/16/reading-code-over-the-telephone.aspx</a> answers your question.</p> http://stackoverflow.com/questions/1058170/how-to-get-a-free-entry-in-a-c-dictionary/1058194#1058194 1 Answer by VVS for How to get a free entry in a C# dictionary VVS 2009-06-29T13:11:16Z 2009-06-29T13:11:16Z <p>Why don't you keep track of the current maximum number and increment that number by one every time a new user is added?</p> http://stackoverflow.com/questions/1057959/the-right-way-to-do-stored-procedure-parameter-validation 2 The "right" way to do stored procedure parameter validation VVS 2009-06-29T12:10:40Z 2009-06-29T12:32:17Z <p>I have a stored procedure that does some parameter validation and should fail and stop execution if the parameter is not valid.</p> <p>My first approach for error checking looked like this:</p> <pre><code>create proc spBaz ( @fooInt int = 0, @fooString varchar(10) = null, @barInt int = 0, @barString varchar(10) = null ) as begin if (@fooInt = 0 and (@fooString is null or @fooString = '')) raiserror('invalid parameter: foo', 18, 0) if (@barInt = 0 and (@barString is null or @barString = '')) raiserror('invalid parameter: bar', 18, 0) print 'validation succeeded' -- do some work end </code></pre> <p>This didn't do the trick since severity 18 doesn't stop the execution and 'validation succeeded' is printed together with the error messages.</p> <p>I know I could simply add a return after every raiserror but this looks kind of ugly to me:</p> <pre><code> if (@fooInt = 0 and (@fooString is null or @fooString = '')) begin raiserror('invalid parameter: foo', 18, 0) return end ... print 'validation succeeded' -- do some work </code></pre> <p>Since errors with severity 11 and higher are caught within a try/catch block another approach I tested was to encapsulate my error checking inside such a try/catch block. The problem was that the error was swallowed and not sent to the client at all. So I did some research and found a way to <a href="http://sqlblog.com/blogs/roman%5Frehak/archive/2007/12/01/how-to-rethrow-errors-in-t-sql.aspx" rel="nofollow">rethrow</a> the error:</p> <pre><code> begin try if (@fooInt = 0 and (@fooString is null or @fooString = '')) raiserror('invalid parameter: foo', 18, 0) ... end try begin catch exec usp_RethrowError return end catch print 'validation succeeded' -- do some work </code></pre> <p>I'm still not happy with this approach so I'm asking you:</p> <p>How does your parameter validation look like? Is there some kind of "best practice" to do this kind of checking?</p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/1036544#1036544 1 Answer by VVS for What was your first computer game that got you interested in computers? VVS 2009-06-24T05:35:34Z 2009-06-24T05:35:34Z <p><strong>The Game of Robot</strong></p> <p>I was totally addicted to this game and it was the first shareware game I bought a key for (while being 6 years old). </p> <p>I still love the game and there's even a windows version out now :).</p> <p><img src="http://www.schwortschik.de/robot/images/robot1.png" alt="The Game of Robot" /></p> http://stackoverflow.com/questions/1033229/regular-expression-fs00000/1033304#1033304 0 Answer by VVS for Regular Expression FS00000 VVS 2009-06-23T15:28:03Z 2009-06-23T15:28:03Z <pre><code>^FS[0-9]{5}$ </code></pre> <p>will do the trick.</p> <p>This matches any string that begins (^) with FS followed by 5 times 0-9 and then ends ($).</p> <p>Don't use \d in this case since it will also match <a href="http://www.fileformat.info/info/unicode/category/Nd/list.htm" rel="nofollow">Unicode Decimal Digits</a> (at least in .NET).</p> http://stackoverflow.com/questions/1031583/i-can-not-access-count-property-of-the-array-but-through-casting-to-icollection/1031612#1031612 3 Answer by VVS for I can not access Count property of the array but through casting to ICollection !! VVS 2009-06-23T09:51:02Z 2009-06-23T09:51:02Z <p>While <code>System.Array</code> implement the <code>ICollection</code> interface it doesn't directly expose the <code>Count</code> property. You can see the <strong>explicit</strong> implementation of <code>ICollection.Count</code> in the MSDN documentation <a href="http://msdn.microsoft.com/en-us/library/system.array%5Fproperties.aspx" rel="nofollow">here</a>.</p> <p>The same applies to <code>IList.Item</code>.</p> <p>Take look at this Blog entry for more details on explicit and implicit interface implementation: <a href="http://blogs.msdn.com/mhop/archive/2006/12/12/implicit-and-explicit-interface-implementations.aspx" rel="nofollow">Implicit and Explicit Interface Implementations</a></p> http://stackoverflow.com/questions/1028449/why-is-this-the-extended-ascii-character-aeetc-getting-replaced-with-ch/1028510#1028510 0 Answer by VVS for Why is this the extended ascii character (â, é, etc) getting replaced with <?> characters? VVS 2009-06-22T17:37:40Z 2009-06-22T17:37:40Z <p>You should encode all special chars into HTML entities instead of depending on the charset. </p> <p><a href="http://de.php.net/manual/en/function.htmlentities.php" rel="nofollow">htmlentities()</a> will do the work for you.</p> http://stackoverflow.com/questions/1013275/idisposable-finalizers-and-the-definition-of-an-unmanaged-resource/1013319#1013319 0 Answer by VVS for IDisposable, Finalizers and the definition of an unmanaged resource VVS 2009-06-18T15:21:01Z 2009-06-19T13:36:16Z <p><strong>Yes, you're responsible to call the <code>Dispose</code> method - or better use <code>using</code> statement. If an object is implementing <code>IDisposable</code>, you should always dispose it, no matter what.</strong></p> <pre><code>using (var myObj = new Whatever()) { // .. } </code></pre> <p>is similar to</p> <pre><code>{ var myObj; try { myObj = new Whatever(); // .. } finally { if (myObj != null) { ((IDisposable)myObj).Dispose(); } } } // object scope ends here </code></pre> <p><strong>EDIT</strong>: Added try/finally thanks to Talljoe - wow, that's complicated to get it right :)</p> <p><strong>EDIT2:</strong> I am not saying that you should use the second variant. I just wanted to show that "using" is nice syntactic sugar for a bunch of code that can get quite messy and hard to get right.</p> http://stackoverflow.com/questions/1011911/mysql-error-2013/1011913#1011913 0 Answer by VVS for MySQL Error 2013 VVS 2009-06-18T10:12:54Z 2009-06-18T12:55:36Z <ol> <li><p>Sounds like a firewall issue. Have you tried disabling the firewall temporarily?</p></li> <li><p>Another possible solution involves edition the startup script as mentioned <a href="http://forums.mysql.com/read.php?34,45914,120196#msg-120196" rel="nofollow">here</a> and commenting out the following line:</p> <p>SKIP=skip-networking</p></li> <li><p>A third possible solution is mentioned <a href="http://www.tutorials.de/forum/relationale-datenbanksysteme/194826-mysql-error-2013-hy000-lost-connection-mysql-server-during-query.html#post1011024" rel="nofollow">here</a>. The user tried to access an InnoDB database and InnoDB support was accidentially deactivated for the MySQL server.</p></li> <li><p><strong>(new)</strong> I found <a href="http://dev.mysql.com/doc/refman/5.0/en/gone-away.html" rel="nofollow">this official MySQL article</a> which has lots of approaches to solve the problem. Did you modify the wait_timeout system variable?</p></li> </ol> http://stackoverflow.com/questions/999709/php-list-query-not-working/999877#999877 1 Answer by VVS for PHP - list() query not working VVS 2009-06-16T06:48:36Z 2009-06-16T06:48:36Z <blockquote> <p>Actually, I recently recalled that my very first table name is indeed "#&amp;*+." I added it deliberately during development</p> </blockquote> <p>And you're wondering why your SQL fails? :)</p> <p><strong>Quote your table name</strong> because this one is by far not a table name that can be used literally.</p> <p>Something like</p> <pre><code>"SELECT COUNT(*) FROM \"$table\" ... </code></pre> http://stackoverflow.com/questions/997682/msdn-release-candidate-builds-windows-7-windows-2008-r2-et-al/997712#997712 1 Answer by VVS for MSDN Release Candidate builds (Windows 7, Windows 2008 R2 et al) VVS 2009-06-15T18:52:58Z 2009-06-15T18:52:58Z <p>Every nonfinal microsoft product is timebombed.</p> http://stackoverflow.com/questions/989256/ushort-array-to-image-object/989334#989334 2 Answer by VVS for ushort array to Image object. VVS 2009-06-12T22:21:28Z 2009-06-12T22:21:28Z <p>I think you have to actually create a <code>Bitmap</code>, draw the pixels onto it and save it afterwards.</p> <p>Something like this:</p> <pre><code>var bitmap = new Bitmap(sizeX, sizeY, Imaging.PixelFormat.Format16bppGrayScale) for (y = 0; ...) for (x = 0; ...) { bitmap.SetPixel(x, y, color information from ushort array); } bitmap.Save("filename.jpg", ImageFormat.Jpeg); </code></pre> <p>Note that I don't know how to get a 16 bit greyscale color information into the Color struct.</p> http://stackoverflow.com/questions/987541/explicitly-use-extension-method 2 Explicitly use extension method VVS 2009-06-12T16:07:07Z 2009-06-12T16:59:19Z <p>I'm having a <code>List&lt;T&gt;</code> and want get the values back in reverse order. What I don't want is to reverse the list itself.</p> <p>This seems like no problem at all since there's a <code>Reverse()</code> extension method for <code>IEnumerable&lt;T&gt;</code> which does exactly what I want.</p> <p>My problem is, that there's also a <code>Reverse()</code> method for <code>List&lt;T&gt;</code> which reverses the list itself and returns void.</p> <p>I know there are <em>plenty</em> of ways to traverse the list in reverse order but my question is:</p> <p><strong>How do I tell the compiler that I want to use the extension method with the same name?</strong></p> <pre><code>var list = new List&lt;int&gt;(new [] {1, 2, 3}); DumpList(list.Reverse()); // error </code></pre> http://stackoverflow.com/questions/964288/flattening-intersecting-timespans 9 Flattening intersecting timespans VVS 2009-06-08T10:41:21Z 2009-06-12T11:39:14Z <p>I have lots of data with start and stop times for a given ID and I need to flatten all intersecting and adjacent timespans into one combined timespan. The sample data posted below is all for the same ID so I didn't list it.</p> <p>To make things a bit clearer, take a look at the sample data for 03.06.2009: </p> <p>The following timespans are overlapping or contiunous and need to merge into one timespan</p> <ul> <li>05:54:48 - 10:00:13</li> <li>09:26:45 - 09:59:40</li> </ul> <p>The resulting timespan would be from 05:54:48 to 10:00:13. Since there's a gap between 10:00:13 and 10:12:50 we also have the following timespans:</p> <ul> <li>10:12:50 - 10:27:25</li> <li>10:13:12 - 11:14:56</li> <li>10:27:25 - 10:27:31</li> <li>10:27:39 - 13:53:38</li> <li>11:14:56 - 11:15:03</li> <li>11:15:30 - 14:02:14</li> <li>13:53:38 - 13:53:43</li> <li>14:02:14 - 14:02:31</li> </ul> <p>which result in one merged timespan from 10:12:50 to 14:02:31, since they're overlapping or adjacent.</p> <p>Below you will find the sample data and the flattened data as I would need it. The duration column is just informative. </p> <p>Any solution - be it SQL or not - is appreciated.</p> <p><hr /></p> <p><strong>EDIT</strong>: Since there are lots of different and interesting solutions I'm refining my original question by adding constraints to see the "best" (if there is one) solution bubble up:</p> <ul> <li>I'm getting the data via ODBC from another system. There's no way to change the table layout for me or adding indexes</li> <li>The data is indexed only by the date column (the time part isn't)</li> <li>There are about 2.5k rows for every day</li> <li>The estimated usage pattern of the data is roughly as follows: <ul> <li>Most of the time (lets say 90%) the user will query just one or two days (2.5k - 5k rows)</li> <li>Sometimes (9%) the range will be up to a month (~75k rows)</li> <li>Rarely (1%) the range will be up to a year (~900k rows)</li> </ul></li> <li>The query should be fast for the typical case and not "last forever" for the rare case.</li> <li>Querying a year worth of data takes about 5 minutes (plain select without joins) </li> </ul> <p>Within these constraints, what would be the best solution? I'm afraid that most of the solutions will be horribly slow since they join on the combination of date and time, which is not an index field in my case.</p> <p>Would you do all the merging on the client or the server side? Would you first create an optimized temp table and use one of the proposed solutions with that table? I didn't have the time to test the solutions until now but I will keep you informed what works best for me.</p> <p><hr /></p> <p><strong>Sample data:</strong></p> <pre><code>Date | Start | Stop -----------+----------+--------- 02.06.2009 | 05:55:28 | 09:58:27 02.06.2009 | 10:15:19 | 13:58:24 02.06.2009 | 13:58:24 | 13:58:43 03.06.2009 | 05:54:48 | 10:00:13 03.06.2009 | 09:26:45 | 09:59:40 03.06.2009 | 10:12:50 | 10:27:25 03.06.2009 | 10:13:12 | 11:14:56 03.06.2009 | 10:27:25 | 10:27:31 03.06.2009 | 10:27:39 | 13:53:38 03.06.2009 | 11:14:56 | 11:15:03 03.06.2009 | 11:15:30 | 14:02:14 03.06.2009 | 13:53:38 | 13:53:43 03.06.2009 | 14:02:14 | 14:02:31 04.06.2009 | 05:48:27 | 09:58:59 04.06.2009 | 06:00:00 | 09:59:07 04.06.2009 | 10:15:52 | 13:54:52 04.06.2009 | 10:16:01 | 13:24:20 04.06.2009 | 13:24:20 | 13:24:24 04.06.2009 | 13:24:32 | 14:00:39 04.06.2009 | 13:54:52 | 13:54:58 04.06.2009 | 14:00:39 | 14:00:49 05.06.2009 | 05:53:58 | 09:59:12 05.06.2009 | 10:16:05 | 13:59:08 05.06.2009 | 13:59:08 | 13:59:16 06.06.2009 | 06:04:00 | 10:00:00 06.06.2009 | 10:16:54 | 10:18:40 06.06.2009 | 10:18:40 | 10:18:45 06.06.2009 | 10:23:00 | 13:57:00 06.06.2009 | 10:23:48 | 13:57:54 06.06.2009 | 13:57:21 | 13:57:38 06.06.2009 | 13:57:54 | 13:57:58 07.06.2009 | 21:59:30 | 01:58:49 07.06.2009 | 22:12:16 | 01:58:39 07.06.2009 | 22:12:25 | 01:58:28 08.06.2009 | 02:10:33 | 05:56:11 08.06.2009 | 02:10:43 | 05:56:23 08.06.2009 | 02:10:49 | 05:55:59 08.06.2009 | 05:55:59 | 05:56:01 08.06.2009 | 05:56:11 | 05:56:14 08.06.2009 | 05:56:23 | 05:56:27 </code></pre> <p><strong>Flattened result:</strong></p> <pre><code>Date | Start | Stop | Duration -----------+----------+----------+--------- 02.06.2009 | 05:55:28 | 09:58:27 | 04:02:59 02.06.2009 | 10:15:19 | 13:58:43 | 03:43:24 03.06.2009 | 05:54:48 | 10:00:13 | 04:05:25 03.06.2009 | 10:12:50 | 14:02:31 | 03:49:41 04.06.2009 | 05:48:27 | 09:59:07 | 04:10:40 04.06.2009 | 10:15:52 | 14:00:49 | 03:44:58 05.06.2009 | 05:53:58 | 09:59:12 | 04:05:14 05.06.2009 | 10:16:05 | 13:59:16 | 03:43:11 06.06.2009 | 06:04:00 | 10:00:00 | 03:56:00 06.06.2009 | 10:16:54 | 10:18:45 | 00:01:51 06.06.2009 | 10:23:00 | 13:57:58 | 03:34:58 07.06.2009 | 21:59:30 | 01:58:49 | 03:59:19 08.06.2009 | 02:10:33 | 05:56:27 | 03:45:54 </code></pre> http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/976874#976874 3 Answer by VVS for WPF Blurry fonts problem - Solutions VVS 2009-06-10T16:55:16Z 2009-06-12T09:33:43Z <p>Wow, I can't believe I finally got my WPF fonts readable. And I also can't believe there is no option dialog to make these changes easy while the default values are horrible on my display.</p> <p>These <a href="http://msdn.microsoft.com/en-us/library/aa970267.aspx" rel="nofollow">registry settings</a> (in decimal) worked for me and come closest to my regular cleartype font:</p> <ul> <li>ClearTypeLevel: 10 (mostly greyscale aliasing)</li> <li>GammaLevel: 1300 (higher gamma made the font too thin and I was seeing the colors in the aliasing)</li> </ul> http://stackoverflow.com/questions/985298/what-is-encapsulation-with-simple-example-in-php/985318#985318 1 Answer by VVS for What is encapsulation with simple example in php? VVS 2009-06-12T06:52:03Z 2009-06-12T06:52:03Z <p>The opposite of encapsulation would be something like passing a variable to every method (like a file handle to every file-related method) or global variables.</p> http://stackoverflow.com/questions/985281/what-is-the-closest-thing-windows-has-to-fork/985302#985302 1 Answer by VVS for What is the closest thing windows has to fork()? VVS 2009-06-12T06:44:53Z 2009-06-12T06:44:53Z <p>There is no easy way to emulate fork() on Windows.</p> <p>I suggest you to use threads instead.</p> http://stackoverflow.com/questions/983336/relational-database-theory-and-sql-book-recommendations/983397#983397 3 Answer by VVS for Relational database theory and SQL book recommendations? VVS 2009-06-11T20:14:27Z 2009-06-11T20:14:27Z <p>I would recommend every single book written by <a href="http://www.amazon.com/Joe-Celko/e/B000ARBFVQ/" rel="nofollow">Joe Celko</a>, especially <a href="http://rads.stackoverflow.com/amzn/click/0123693799" rel="nofollow">Joe Celko's SQL for Smarties: Advanced SQL Programming Third Edition</a></p> http://stackoverflow.com/questions/983086/when-to-comment-code-the-other-when/983161#983161 1 Answer by VVS for When To Comment Code (The Other "When") VVS 2009-06-11T19:33:57Z 2009-06-11T19:39:31Z <p>I really encourage you to read this book: <a href="http://rads.stackoverflow.com/amzn/click/1593271190" rel="nofollow">Code Craft: The Practice of Writing Excellent Code</a></p> <p>There's a whole chapter about this topic.</p> <p>Here are some key concepts from that chapter:</p> <ul> <li>Learn to write <em>enough</em> comments, and no more. Favor quality, not quantity.</li> <li>Spend your time writing code that doesn't need to be propped up by tons of comments.</li> <li>Good comments explain <em>why</em> not <em>how</em>.</li> <li>When you find yourself writing dense comments to explain, <em>step back</em>. Is there a bigger problem to solve?</li> <li>etc.</li> </ul> http://stackoverflow.com/questions/982152/how-can-i-get-the-assembly-version-as-a-integer-in-c/982337#982337 4 Answer by VVS for How can I get the assembly version as a integer in C#? VVS 2009-06-11T17:00:47Z 2009-06-11T19:17:56Z <p>If you really have to do this conversion, you should at least reserve <strong>an adequate amount of digits</strong> for every version part.</p> <p>Two digits for Major, Minor and Revision and four for Build:</p> <pre><code>var version = Assembly.GetExecutingAssembly().GetName().Version(); Debug.Assert(version.Major &gt;= 0 &amp;&amp; version.Major &lt; 100) Debug.Assert(version.Minor &gt;= 0 &amp;&amp; version.Minor &lt; 100) Debug.Assert(version.Build &gt;= 0 &amp;&amp; version.Build &lt; 10000) Debug.Assert(version.Revision &gt;= 0 &amp;&amp; version.Revision &lt; 100) long longVesion = version.Major * 100000000L + version.Minor * 1000000L + version.Build * 100L + version.Revision; int intVersion = (int) longVersion; Debug.Assert((long)intVersion == longVersion) </code></pre> <p><em>Note that this method will still fail for some exotic versions!</em></p> <p>Don't even think about version 21.47.4836.48 :)</p> <p><strong>EDIT:</strong> Added assertions.</p> http://stackoverflow.com/questions/1485786/error-cross-thread-operation-not-valid/1485798#1485798 Comment by VVS on Error: Cross thread operation not valid VVS 2009-09-28T07:15:47Z 2009-09-28T07:15:47Z Nice recursive invocation pattern. http://stackoverflow.com/questions/1365958/returning-real-values-from-fortran77-dll-to-c Comment by VVS on returning real values from fortran77 dll to c# VVS 2009-09-02T05:36:14Z 2009-09-02T05:36:14Z So.. what's the error message? http://stackoverflow.com/questions/1330221/sql-filtering-by-multiple-items-in-the-same-column/1330225#1330225 Comment by VVS on SQL filtering by multiple items in the same column VVS 2009-08-25T18:51:40Z 2009-08-25T18:51:40Z Aa, your're right.. http://stackoverflow.com/questions/937298/restoring-window-size-position-with-multiple-monitors/942069#942069 Comment by VVS on Restoring Window Size/Position With Multiple Monitors VVS 2009-08-20T13:09:10Z 2009-08-20T13:09:10Z Perhaps the problem with my code is that I shouldn't make the window invisible before changing the state. Perhaps I just should test it instead of guessing :) http://stackoverflow.com/questions/1297724/select-the-maximun Comment by VVS on select the maximun VVS 2009-08-19T06:30:39Z 2009-08-19T06:30:39Z Now I don't want to help you anymore. http://stackoverflow.com/questions/1265390/what-is-wrong-in-my-code-to-call-a-stored-procedure Comment by VVS on what is wrong in my code to call a stored procedure VVS 2009-08-12T10:44:05Z 2009-08-12T10:44:05Z Can you post the exact error message? http://stackoverflow.com/questions/1265390/what-is-wrong-in-my-code-to-call-a-stored-procedure Comment by VVS on what is wrong in my code to call a stored procedure VVS 2009-08-12T10:36:27Z 2009-08-12T10:36:27Z @command is empty? http://stackoverflow.com/questions/1175873/c-parametrized-string-with-spaces-only-between-full-parameters/1175878#1175878 Comment by VVS on C#: parametrized string with spaces only between "full" parameters? VVS 2009-07-24T19:53:57Z 2009-07-24T19:53:57Z @Jimmy &amp; mpbloch: of course you're right. corrected it http://stackoverflow.com/questions/1175873/c-parametrized-string-with-spaces-only-between-full-parameters/1175878#1175878 Comment by VVS on C#: parametrized string with spaces only between "full" parameters? VVS 2009-07-24T06:02:33Z 2009-07-24T06:02:33Z @Jimmy: the spaces are conditional to the parameter at position {1}.. so no, you don't get 2 spaces if param1 is null or empty. http://stackoverflow.com/questions/493603/what-is-the-cleanest-way-to-write-this-if-then-logic/493640#493640 Comment by VVS on What is the cleanest way to write this if..then logic? VVS 2009-07-02T15:21:37Z 2009-07-02T15:21:37Z This also follows the pattern to return as soon as possible to keep the program flow clear. http://stackoverflow.com/questions/1074941/what-flavour-of-regular-expression-is-grep/1074957#1074957 Comment by VVS on What flavour of regular expression is grep? VVS 2009-07-02T15:11:51Z 2009-07-02T15:11:51Z So.. what's the flavour? http://stackoverflow.com/questions/1072806/sql-server-calculation-with-numeric-literals/1072886#1072886 Comment by VVS on SQL Server: Calculation with numeric literals VVS 2009-07-02T09:03:25Z 2009-07-02T09:03:25Z @Lieven: do you have any kind of documentation that confirms your statement that &quot;SQL Server always interpretes the value as numeric&quot;? http://stackoverflow.com/questions/1072985/how-to-bind-a-listbox-to-a-property-of-type-list-on-an-object/1073017#1073017 Comment by VVS on How to bind a ListBox to a property of type List on an object? VVS 2009-07-02T07:53:36Z 2009-07-02T07:53:36Z Nice minimalistic approach for creating a form. http://stackoverflow.com/questions/1072806/sql-server-calculation-with-numeric-literals/1072886#1072886 Comment by VVS on SQL Server: Calculation with numeric literals VVS 2009-07-02T07:16:49Z 2009-07-02T07:16:49Z So there's no way around an explicit cast to get the expected result? Is there another way to tell SQL Server that a given literal is of type (e.g.) float? http://stackoverflow.com/questions/1072806/sql-server-calculation-with-numeric-literals/1072886#1072886 Comment by VVS on SQL Server: Calculation with numeric literals VVS 2009-07-02T07:00:50Z 2009-07-02T07:00:50Z Ah.. I didn't know that method until now. Thank you very much :)