User petr k. - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:57:25Zhttp://stackoverflow.com/feeds/user/15497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution34How do you protect your software from illegal distribution?petr k.2008-09-21T01:58:00Z2009-11-07T06:24:50Z
<p>I am curious about how do you protect your software against cracking, hacking etc.</p>
<p>Do you employ some kind of serial number check? Hardware keys? </p>
<p>Do you use any third-party solutions?</p>
<p>How do you go about solving licensing issues? (e.g. managing floating licenses)</p>
<p>EDIT: I'm not talking any open source, but strictly commercial software distribution...</p>
http://stackoverflow.com/questions/1681448/error-editing-a-blob-field-in-arcgis-engine/1681566#16815660Answer by petr k. for Error editing a blob field in ArcGIS Enginepetr k.2009-11-05T16:04:58Z2009-11-05T16:04:58Z<p>First, you are probably very likely to get better feedback on ESRI forums as your problem is very specific.</p>
<p>I seem to remember I had similar issues with BLOBs, reading them only, not writing to them. In my case I was using a recycling cursor to retrieve the feature references, using a non-recycling cursor solved it. I assume this is not your case as you are performing edits, which requires you to use a non-recycling cursor. Or perhaps you are getting references to your features directly from the layer, which involves no cursors on your part at all.</p>
<p>The way you are using MemoryBlobStream's ImportFromVariant is just fine, I do not see any problems with that. I would first test whether the same problem occurs when editing a blob inside a personal or a file geodatabase.</p>
http://stackoverflow.com/questions/1606862/developing-and-using-a-custom-asp-net-web-control-in-a-single-solution1Developing and using a custom ASP.NET web control in a single solutionpetr k.2009-10-22T12:27:35Z2009-10-22T13:31:36Z
<p>Hello everyone,</p>
<p>I have a solution with a web site and also a class library with a control which inherits from the WebControl class. When I place the control in the toolbox and use it in the web site, I can no longer build the solution - Visual Studio (the compiler) complains about the class library DLL being used by another process (which I suspect is VS itself).</p>
<p>Is there a way to develop and use a custom ASP.NET web control in a single solution? Or am I missing something here?</p>
http://stackoverflow.com/questions/1439176/svn-can-you-remove-directories-from-a-local-checkout-only-not-from-the-reposito/1439274#14392741Answer by petr k. for SVN: Can you remove directories from a local checkout only (not from the repository)?petr k.2009-09-17T14:33:14Z2009-09-17T14:33:14Z<p>You can try this <a href="http://yoopergeek.blogspot.com/2007/11/cloakinghidingfiltering-unwanted.html" rel="nofollow">trick</a> involving a local repository and svn:<strong>externals</strong> declarations.</p>
<p>Haven't tried it myself, though.</p>
http://stackoverflow.com/questions/1423728/why-xaml-is-compiled-into-baml-and-not-in-c/1423757#14237573Answer by petr k. for Why XAML is compiled into BAML and not in C#petr k.2009-09-14T20:31:57Z2009-09-14T20:31:57Z<p>This blog post should provide a comprehensive answer: <a href="http://blogs.microsoft.co.il/blogs/tomershamam/archive/2007/05/25/Compiled-XAML-%5F3D00%5F-BAML-not-IL.aspx" rel="nofollow">http://blogs.microsoft.co.il/blogs/tomershamam/archive/2007/05/25/Compiled-XAML-%5F3D00%5F-BAML-not-IL.aspx</a></p>
http://stackoverflow.com/questions/1295524/when-do-i-need-to-stop-using-design-patterns/1295553#12955531Answer by petr k. for When do i need to stop using design patterns?petr k.2009-08-18T18:05:23Z2009-08-18T18:05:23Z<p>Don't over-engineer when it's not needed. Took some time for me to learn this myself, though. </p>
<p>Ask yourself when it <strong>is needed</strong> to use a particular design pattern. When it's not the case, don't. A good reason to make use of design patterns on a legacy system is during refactoring.</p>
http://stackoverflow.com/questions/1295358/best-practices-when-should-i-use-a-delegate-in-net/1295525#12955250Answer by petr k. for Best practices: When should I use a delegate in .NET?petr k.2009-08-18T18:00:46Z2009-08-18T18:00:46Z<p>Also, besides all that has been said by others, <strong>lambda expressions</strong> in newer versions of .NET are directly based on delegates.</p>
http://stackoverflow.com/questions/81784/c-excluding-unit-tests-from-the-release-version-of-your-project5C# - Excluding unit tests from the release version of your projectpetr k.2008-09-17T10:22:47Z2009-08-12T09:51:41Z
<p>How do you usually go about <strong>separating your codebase and associated unit tests</strong>? I know people who create a separate project for unit tests, which I personally find confusing and difficult to maintain. On the other hand, if you mix up code and its tests in a single project, you end up with binaries related to your unit test framework (be it NUnit, MbUnit or whatever else) and your own binaries side by side.</p>
<p>This is fine for debugging, but once I build a <strong>release version</strong>, I really do not want my code to <strong>reference the unit testing framework</strong> any more.</p>
<p>One solution I found is to enclose all your unit tests within #if DEBUG -- #endif directives: when no code references an unit testing assembly, the compiler is clever enough to omit the reference in the compiled code.</p>
<p>Are there any other (possibly more comfortable) options to achieve a similar goal?</p>
http://stackoverflow.com/questions/329247/good-third-party-components-for-net/1223960#12239600Answer by petr k. for Good third party components for .NETpetr k.2009-08-03T18:46:12Z2009-08-03T18:46:12Z<p>We are very happy with <a href="http://www.componentone.com/" rel="nofollow" title="ComponentOne">ComponentOne</a> products as they're very powerful while easy to use, also having a clean API.</p>
http://stackoverflow.com/questions/1219074/how-to-fix-a-subversion-visualsvn-repository/1219077#12190774Answer by petr k. for How to fix a subversion (VisualSVN) repositorypetr k.2009-08-02T15:04:23Z2009-08-02T15:04:23Z<p>You might try checking out the latest revision and then manually copy changes to its working copy from your current working copy (which is one revision ahead). Then you should be able to commit normally.</p>
http://stackoverflow.com/questions/537234/svn-checkout-export-only-the-directory-structure2SVN: Checkout/export only the directory structurepetr k.2009-02-11T15:09:22Z2009-07-23T10:34:12Z
<p>Hi everyone,
is there a way to perform a SVN checkout (or export), which would fetch <strong>only the directory structure</strong>, i.e. no files?</p>
<p>Thanks in a advance.</p>
http://stackoverflow.com/questions/311363/net-xml-docs-inheriting-documentation4.NET xml docs - inheriting documentationpetr k.2008-11-22T13:53:14Z2009-07-03T18:46:42Z
<p>NDoc has an XML element <strong>inheritdoc</strong> which allows you to inherit documentation of a member from the parent class (or an implemented interface). However, Visual Studio (i.e. the C# compiler) does not understand this tag and complains about the documentation not being present or complete. So does StyleCop and some other tools. Is there an alternative approach? How do you go about keeping the docs complete, yet without duplicating the XML descriptions?</p>
http://stackoverflow.com/questions/958133/best-ide-eclipse-netbeans-codeblocks-visual-studio-others/959565#9595651Answer by petr k. for Best IDE: Eclipse, Netbeans, CodeBlocks, Visual Studio, Others? petr k.2009-06-06T12:13:07Z2009-06-06T12:13:07Z<p>For .NET, definitely <strong>Visual Studio 2008</strong>, ideally with <strong>Resharper 4.5</strong> installed.</p>
<p>For Java, <strong>IntelliJ IDEA</strong> is great.</p>
http://stackoverflow.com/questions/923190/simple-menu-like-navigation-in-winforms0Simple menu-like navigation in WinFormspetr k.2009-05-28T21:05:28Z2009-05-28T22:15:17Z
<p>Hello everyone,</p>
<p>I am writing a very simple WinForms application with few data-entry forms. But before the user gets to these forms, she has to select which action to take (ie which form to open, possibly after entering a search query). As this application is a rewrite of a legacy custom DOS FoxPro app, the user wants the UI to be as similar (read simple) to the old one as possible. <em>(Please note I do not want to discuss how to persuade the customer to migrate to a more modern UI.)</em></p>
<p>Now, the UI should look like this:</p>
<pre><code>│--------------│
│ Customers >> │ │-----------------│
│ Invoices │ │ Find customer │
│ -------------│ │ Create new │
│ .. etc.. │ │ Delete customer │
│ -------------│ │-----------------│
│ Exit │
│--------------│
</code></pre>
<p>The menu has to be quite large and in the middle of the screen (form). This means that classic MenuStrip is out of the question. Should I create ListBoxes on the fly with the appropriate items? How would you approach this? I already have the navigation structure in stored in objects, I am looking for advice how to present the navigation UI to the user.</p>
<p>Also, in this case keyboard input is essential and more important than mouse interaction.</p>
http://stackoverflow.com/questions/530262/net-projects-build-automation-with-nant-msbuild-svn2.NET projects build automation with NAnt/MSBuild + SVNpetr k.2009-02-09T22:12:02Z2009-05-18T15:01:18Z
<p>Hi everyone,
for quite a while now, I've been trying to figure out how to setup an automated build process at our shop. I've read many posts and guides on this matter and none of them really fits my specifics needs.</p>
<p>My SVN repository is laid out as follows</p>
<pre><code>\projects
\projectA (a product)
\tags
\1.0.0.1
\1.0.0.2
...
\trunk
\src
\proj1 (a VS C# project)
\proj2
\documentation
</code></pre>
<p>Then I have a network share, with a folder for each project (product), which in turn contains the binaries, written documentation and the generated API documentation (via NDoc - each project may have an .ndoc file in the repository) for <strong>every historical version</strong> (from the <em>tags</em> SVN folder) and for the <strong>latest version</strong> as well (from the <em>trunk</em>).</p>
<p>Basically, what I want to do in a scheduled batch build are these steps:</p>
<ol>
<li>examine the project's SVN folder and identify <em>tag</em>s <strong>not present in the network share</strong></li>
<li>for <strong>each of these tags</strong>
<ol>
<li>check out the tag folder</li>
<li><strong>build</strong> (with Release config)</li>
<li><strong>copy the resulting binaries</strong> to the network share</li>
<li>search for .ndoc files</li>
<li><strong>generate CHM files</strong> via NDoc</li>
<li><strong>copy the resulting CHM files</strong> to the network share</li>
</ol></li>
<li>do the same as in 2., but for the HEAD revision of <em>trunk</em></li>
</ol>
<p>Now, the trouble is, I have no idea where to start. I do not keep .sln files in the repository, but I am able to replace these with MSBuild files which in turn build the C# projects belonging to the specific product.</p>
<p>I guess the most troubling part is the examination of the repository for tags which have not been processed yet - i.e. searching the tags and comparing them to a project's directory structure on the network share. I have no idea how to do that in any of the build tools (NAnt, MSBuild).</p>
<p>Could you please provide me with some pointers on how to approach this task as a whole and in detail as well? I do not care if I use NAnt, MSBuild, or both. I am aware that this might be rather complex, but every idea and NAnt/MSBuild snippet will be a great help.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/749030/keep-a-http-connection-alive-in-c/749041#7490414Answer by petr k. for Keep a http connection alive in C#?petr k.2009-04-14T19:34:28Z2009-04-14T19:39:47Z<p>Have you tried the <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.keepalive.aspx" rel="nofollow">HttpWebRequest.KeepAlive</a> property? It sets the appropriate Keep-Alive HTTP header and does persist the connections. (Of course this must also be supported and enabled by the remote web server).</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.keepalive.aspx" rel="nofollow">HttpWebRequest.KeepAlive</a> documentation on MSDN states that it is set to <strong>true</strong> by default for HTTP1.1 connections, so I suspect the server you're trying to contact does not allow connection persistence.</p>
<p>Proxy is used automatically and its settings are taken from your system (read Internet Explorer) settings. It is also possible to override the proxy settings via <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.proxy.aspx" rel="nofollow">HttpWebRequest.Proxy</a> property or by tweaking the application configuration file (see <a href="http://msdn.microsoft.com/en-us/library/kd3cf2ex.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/kd3cf2ex.aspx</a>).</p>
http://stackoverflow.com/questions/694921/ms-access-mdb-concurrency5MS Access (MDB) concurrencypetr k.2009-03-29T16:40:13Z2009-03-30T14:08:57Z
<p>For a small project I need to utilize a simple database with very light requirements: few tables, no more than few thousands of records in total, 2 or 3 users. I am working in .NET environment.</p>
<p>As a database server (even those Express editions) seems like a huge overkill in this case, a very simple MDB database could do for most of the requirements. I am however, concerned about concurrency. My idea is to place the .mdb file on a network share and let users access this file from their .NET-based clients. The db is mostly aimed at read-only operations but users will occasionally need to update/delete records as well. If this will not be possible at the time (due to the db being locked or whatever), I can hold the updates on the client and process them at a later time.</p>
<p>The question itself goes along these points:</p>
<ul>
<li>How are concurrent reads handled in MDB?</li>
<li>How are concurrent updates/deletes handled in MDB?</li>
<li>Is there a concept of locks and how can I leverage it in a .NET app?</li>
<li>Is placing the MDB file on a network share good or horrible idea?</li>
</ul>
<p>As I am working in .NET, I would also love to know how can I detect any concurrency problems and take appropriate action. I.e., which exception should I catch and what action would you recommend to take?</p>
<p><strong>EDIT</strong>: It may be my bad description of the problem, but most answers seem to advise going for a full blown DB server. I do understand the differences and benefits of having a server installation and have in fact implemented a fair number of projects on MSSQL and Oracle. In this question, however, I am only concerned with Access and its concurrency issues, so please do not suggest a db server.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/146316/ideal-number-of-classes-per-namespace-branch2Ideal number of classes per namespace branchpetr k.2008-09-28T17:35:12Z2009-03-26T17:28:32Z
<p>What number of classes do you think is ideal per one namespace "branch"? At which point would one decide to break one namespace into multiple ones? Let's not discuss the logical grouping of classes (assume they are logically grouped properly), I am, at this point, focused on the maintainable vs. not maintainable number of classes.</p>
http://stackoverflow.com/questions/665925/does-anyone-know-any-good-net-code-documentation-tools/665986#6659862Answer by petr k. for Does anyone know any good .NET code documentation toolspetr k.2009-03-20T12:46:10Z2009-03-20T12:46:10Z<p>Sandcastle is very capable provided you use the <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle Help File Builder</a> which is GUI wrapper around the Sandcastle tools, which are not that trivial to use. The GUI makes it easy.</p>
<p>One problem with Sandcastle is that generating a complete documentation can be quite memory intensive and generally takes longer than using NDoc. NDoc is now a discontinued project stuck in .NET 1.0, but you can still use the tweaked <a href="http://www.kynosarges.de/NDoc.html" rel="nofollow">NDoc2 Alpha</a> which CAN process .NET 2.0 assemblies and source. For newer versions of the framework, Sandcastle is the only way to go, though.</p>
<p>Another good thing about Sandcastle, however, is that it can also be used to generate <a href="http://www.ewoodruff.us/shfbdocs/html/5292ce5c-fda1-4a77-9155-a11755ef1730.htm" rel="nofollow">conceptual documentation</a> for your projects using <a href="http://en.wikipedia.org/wiki/Microsoft%5FAssistance%5FMarkup%5FLanguage" rel="nofollow">MAML</a>.</p>
http://stackoverflow.com/questions/622404/page-break-in-html/622426#6224262Answer by petr k. for page break in HTMLpetr k.2009-03-07T20:21:56Z2009-03-07T20:21:56Z<p>You can specify where page breaks occur using CSS properties <a href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-after" rel="nofollow">page-break-after</a>, <a href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-before" rel="nofollow">page-break-before</a>. Of course, this works <strong>only when printing</strong> the web page. As far as I know, these properties are correctly implemented in all major browsers including IE6+. Additionally, you can also state that page break should not occur inside an element using <a href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside" rel="nofollow">page-break-inside</a>.</p>
<p>If you want paging per se, you need to have HTML for each page and interlink these pages. Or you can fetch contents of each page using AJAX dynamically, which of course involves scripting.</p>
http://stackoverflow.com/questions/467389/code-suggestions-by-resharper-making-code-less-readable/586514#5865142Answer by petr k. for Code suggestions by Resharper making code less readable?petr k.2009-02-25T15:38:41Z2009-02-25T15:38:41Z<p>If you do not like the way ReSharper suggests something, <strong>just disable the specific suggestion</strong> (slash warning slash hint). The same goes for coding style, which I think is quite <strong>highly configurable</strong>. Claiming ReSharper to be unusable (quoting "I'm happy to say it didn't survive, nobody here is using it anymore") just because you do not take 5 minutes to get know how to configure it is just <strong>plain stupid</strong>.</p>
<p>Of course you should not let some tool dictate some part of your coding style, and ReSharper is NOT doing that if you tell it not to. It's that simple.</p>
http://stackoverflow.com/questions/575901/why-struct-can-not-have-parameterless-constructor/575913#5759130Answer by petr k. for Why struct can not have parameterless constructorpetr k.2009-02-22T22:03:33Z2009-02-22T22:03:33Z<p>Quite a reasonable explanation can be found at:
<a href="http://en.csharp-online.net/CSharp_FAQ:_Why_must_struct_constructors_have_at_least_one_argument" rel="nofollow">http://en.csharp-online.net/CSharp_FAQ:_Why_must_struct_constructors_have_at_least_one_argument</a></p>
<p>Quoting:
<em>"The .NET Common Language Runtime (CLR) does not guarantee that parameterless constructors will be called. If structs were permitted to have default, parameterless constructors, the implication would be that default constructors would always be called. Yet, the CLR makes no such guarantee."</em></p>
http://stackoverflow.com/questions/536636/write-array-to-excel-range/536699#5366992Answer by petr k. for Write Array to Excel Rangepetr k.2009-02-11T13:15:01Z2009-02-11T13:15:01Z<p>This is an excerpt from method of mine, which converts a DataTable (the dt variable) into an array and then writes the array into a Range on a worksheet (wsh var). You can also change the topRow variable to whatever row you want the array of strings to be placed at.</p>
<pre><code> object[,] arr = new object[dt.Rows.Count, dt.Columns.Count];
for (int r = 0; r < dt.Rows.Count; r++)
{
DataRow dr = dt.Rows[r];
for (int c = 0; c < dt.Columns.Count; c++)
{
arr[r, c] = dr[c];
}
}
Excel.Range c1 = (Excel.Range)wsh.Cells[topRow, 1];
Excel.Range c2 = (Excel.Range)wsh.Cells[topRow + dt.Rows.Count - 1, dt.Columns.Count];
Excel.Range range = wsh.get_Range(c1, c2);
range.Value = arr;
</code></pre>
<p>Of course you do not need to use an intermediate DataTable like I did, the code excerpt is just to demonstrate how an array can be written to worksheet in single call.</p>
http://stackoverflow.com/questions/468972/how-to-convert-ipicturedisp-to-system-drawing-image/530488#5304881Answer by petr k. for How to convert IPictureDisp to System.Drawing.Imagepetr k.2009-02-09T23:10:02Z2009-02-09T23:10:02Z<p>Check out this <a href="http://blogs.msdn.com/andreww/archive/2007/07/30/converting-between-ipicturedisp-and-system-drawing-image.aspx" rel="nofollow">article</a>.</p>
<p>It describes three different options to take, just pick the one you find easiest or "cleanest" for your purposes (including the one you claim not to be working for you).</p>
http://stackoverflow.com/questions/491415/are-there-any-support-tools-like-coderush-or-resharper-for-f/491432#4914320Answer by petr k. for Are there any support tools like coderush or resharper for F#?petr k.2009-01-29T12:35:32Z2009-01-29T12:35:32Z<p>Not yet, as far as I know. I was also looking for something similar to no success. I suspect as soon as F# hits VS2010 as its integral part, or even a bit earlier, such tools will eventually emerge.</p>
<p>As far as ReSharper is concerned, you may want to drop JetBrains a quick email, it would be interesting to know whether these guys have any plans regarding F#.</p>
http://stackoverflow.com/questions/491374/c-can-someone-tell-me-why-and-where-i-should-use-delegates/491395#4913954Answer by petr k. for C# - Can someone tell me why and where I should use delegates? petr k.2009-01-29T12:26:20Z2009-01-29T12:26:20Z<p>Events are the most obvious example. Compare how the observer pattern is implemented in Java (interfaces) and C# (delegates).</p>
<p>Also, a whole lot of the new C# 3 features (for example lambda expressions) are based on delegates and simplify their usage even further.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/477082#47708243Answer by petr k. for What's your favorite "programmer ignorance" pet peeve?petr k.2009-01-25T02:37:04Z2009-01-25T02:37:04Z<p><em>I am a programmer and I do not need to know how to write a gramatically correct email. I also do not need to communicate with a customer on the phone - it is someone else's job. The only skills that matter are related to programming and nothing, nothing else.</em></p>
<p>Hate this!</p>
http://stackoverflow.com/questions/476163/nant-or-msbuild-which-one-to-choose-and-when/476207#4762071Answer by petr k. for Nant or MSBuild, which one to choose and when?petr k.2009-01-24T16:06:04Z2009-01-24T16:06:04Z<p>I have switched from NAnt to MSBuild recently because of its ability to build VS solutions. I still use NAnt occasionally, though.</p>
<p>You may also want to check out <a href="http://msbuildtasks.tigris.org/" rel="nofollow" title="MSBuild Community Tasks">MSBuild Community Tasks</a> which is like NAntContrib.</p>
http://stackoverflow.com/questions/476043/is-there-a-way-to-call-an-unmanaged-not-com-dll-from-c-application/476045#4760455Answer by petr k. for Is there a way to call an unmanaged (not COM) dll from C# application?petr k.2009-01-24T13:54:02Z2009-01-24T13:54:02Z<p>See "<strong>Consuming unmanaged DLL functions</strong>" topic on MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/26thfadc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/26thfadc.aspx</a></p>
<p>There is no need to add any COM proxy, .NET can consume DLLs directly using the <strong>[DllImport]</strong> attribute. You also have full control over the marshalling between .NET and the unmanaged DLL by specifying additional attributes.</p>
http://stackoverflow.com/questions/462451/gethashcode-guidelines-in-c/462513#4625133Answer by petr k. for GetHashCode Guidelines in C#petr k.2009-01-20T18:35:22Z2009-01-20T18:35:22Z<p>Not directly answering your question, but - if you use Resharper, do not forget it has a feature that generates a reasonable GetHashCode implementation (as well as the Equals method) for you. You can of course specify which members of the class will be taken into account when computing the hashcode.</p>
http://stackoverflow.com/questions/1711631/how-do-i-improve-the-performance-of-sqliteComment by petr k. on How do I improve the performance of SQLite?petr k.2009-11-19T22:39:52Z2009-11-19T22:39:52Z+1 for the amount of valuable information you provide in your questionhttp://stackoverflow.com/questions/1748180/vb-vba-variable-declaration-coding-standard-white-space/1748186#1748186Comment by petr k. on VB/VBA Variable Declaration Coding Standard - White Spacepetr k.2009-11-17T11:28:51Z2009-11-17T11:28:51ZThe OP's question isnt't primarily about variable naming conventions but the usage of whitespace. Besides that, hungarian notation is well-established standard in VB/VBA, so I would stick with it in this case, though I agree that in modern languages it's not recommended.http://stackoverflow.com/questions/1681448/error-editing-a-blob-field-in-arcgis-engine/1682522#1682522Comment by petr k. on Error editing a blob field in ArcGIS Enginepetr k.2009-11-07T07:20:47Z2009-11-07T07:20:47ZAnd for that matter, a downvote is a perfectly valid action in this case since I simply do not believe your answer to be correct. Upvotes and downvotes are the core of this site if you already haven't noticed.http://stackoverflow.com/questions/1681448/error-editing-a-blob-field-in-arcgis-engine/1682522#1682522Comment by petr k. on Error editing a blob field in ArcGIS Enginepetr k.2009-11-07T07:16:22Z2009-11-07T07:16:22ZWell, no need for any harsh reactions here, I think. The change you suggest compiles to the exact same IL. First, learn how COM interop (and the .NET type library importer) works, then talk about someone else's mouth :-)http://stackoverflow.com/questions/1681448/error-editing-a-blob-field-in-arcgis-engine/1682522#1682522Comment by petr k. on Error editing a blob field in ArcGIS Enginepetr k.2009-11-05T19:58:12Z2009-11-05T19:58:12Z-1 MemoryBlobStream is merely an interface which has MemoryBlobStreamClass associated with it via [CoClass] attribute. The change you are suggesting has no effect on the actual instance being created and is not likely to solve the OP's problem. http://stackoverflow.com/questions/1529604/c-antipatterns/1529674#1529674Comment by petr k. on C# Antipatternspetr k.2009-10-07T20:22:44Z2009-10-07T20:22:44ZI doubt that ArgumentNullException is the way to go in this case since from the code, it does not seem that this.FooLicenseHolder is an argument of a function (at least is does not LOOK like one conventions-wise). Perhaps rephrasing the code a bit would make your (perfectly valid) point little clearer.http://stackoverflow.com/questions/1509076/svn-server-using-svn-and-https-at-the-same-timeComment by petr k. on SVN server: using svn:// and http(s):// at the same timepetr k.2009-10-02T12:15:41Z2009-10-02T12:15:41ZSorry, this is an almost exact duplicate of <a href="http://stackoverflow.com/questions/971776/can-the-svn-and-http-protocols-be-used-safely-on-the-same-repository-simultaneous" rel="nofollow" title="can the svn and http protocols be used safely on the same repository simultaneous">stackoverflow.com/questions/971776/…</a> For some reason it did not show up in any of my searches.http://stackoverflow.com/questions/1509076/svn-server-using-svn-and-https-at-the-same-timeComment by petr k. on SVN server: using svn:// and http(s):// at the same timepetr k.2009-10-02T11:57:02Z2009-10-02T11:57:02Zok, do I have the option to move the question to SF or will I have to re-ask there?http://stackoverflow.com/questions/1402301/c-adding-eventsComment by petr k. on C# Adding Events!!!petr k.2009-09-09T22:14:23Z2009-09-09T22:14:23ZDinah: very cool!http://stackoverflow.com/questions/1374664/equivalent-functionality-of-objptr-from-vb6-in-c/1374688#1374688Comment by petr k. on Equivalent (functionality) of ObjPtr from VB6 in C#?petr k.2009-09-04T08:37:03Z2009-09-04T08:37:03Z-1 Hashcode is not intended and for this and should never be used that way.http://stackoverflow.com/questions/66130/whats-so-bad-about-vb-net/66184#66184Comment by petr k. on What's so bad about VB .NET?petr k.2009-09-02T09:29:09Z2009-09-02T09:29:09ZHate to bring this up, but.. what kind of answers shoud I not give here? ... This should have been a comment.http://stackoverflow.com/questions/1218178/c-net-how-can-i-get-typeof-to-work-with-inheritance/1218183#1218183Comment by petr k. on C#.NET - How Can I Get typeof() to Work With Inheritance?petr k.2009-08-05T16:35:46Z2009-08-05T16:35:46ZThis is not only a perfectly correct answer, but also in addition covers the case when you do not have instances of any of the the classes at hand, but still want to determine whether there is an inheritance relationship between two types.http://stackoverflow.com/questions/1222846/how-to-i-combine-multiple-ienumerable-list-together/1222872#1222872Comment by petr k. on How to I combine multiple IEnumerable list together.petr k.2009-08-05T08:25:25Z2009-08-05T08:25:25ZAh, it doesn't, you're right.http://stackoverflow.com/questions/1222846/how-to-i-combine-multiple-ienumerable-list-together/1222872#1222872Comment by petr k. on How to I combine multiple IEnumerable list together.petr k.2009-08-05T08:23:55Z2009-08-05T08:23:55ZI believe it does: every array element in classAs (marked enumInts in the first foreach) happens to be an instance of ClassA which DOES implement IEnumerable<int>.http://stackoverflow.com/questions/923190/simple-menu-like-navigation-in-winforms/923291#923291Comment by petr k. on Simple menu-like navigation in WinFormspetr k.2009-05-28T21:28:59Z2009-05-28T21:28:59ZWell, first the context menus are small (but I suppose I could owner-draw them), second, how would I make them "static" so that they would not disappear (or constantly reappear with flicker) from the form?