User leppie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:52:09Z http://stackoverflow.com/feeds/user/15541 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1821814/asp-net-1-1-issue/1821832#1821832 0 Answer by leppie for ASP.NET 1.1 issue leppie 2009-11-30T19:21:00Z 2009-11-30T19:21:00Z <p>Why not break down that line into logical steps to find out where the error comes from? It is likely from <code>grd_associateSearch.DataKeys[e.Item.ItemIndex]</code>.</p> http://stackoverflow.com/questions/1818078/c-windows-forms-error-cs1519/1818084#1818084 0 Answer by leppie for C# / Windows Forms: error cs1519 leppie 2009-11-30T06:09:11Z 2009-11-30T06:09:11Z <p>Look where the errors start!</p> <p>You cant have statements in the class body. It needs to be in a method/property/constructor.</p> http://stackoverflow.com/questions/1779826/question-about-environment-processorcount/1779838#1779838 0 Answer by leppie for Question about Environment.ProcessorCount leppie 2009-11-22T20:17:15Z 2009-11-22T20:17:15Z <blockquote> <p>If my computer had 2 processors, each with 4 cores, would Environment.ProcessorCount return 2, 4, or 8?</p> </blockquote> <p>It returns 8, in my case anyways. (Core i7 860 cpu).</p> http://stackoverflow.com/questions/626035/cmd-full-screen-visual-studio/1778300#1778300 0 Answer by leppie for CMD Full Screen Visual Studio leppie 2009-11-22T09:48:24Z 2009-11-22T09:48:24Z <p>Alt + Enter, is the full screen toggle for the Command Prompt.</p> http://stackoverflow.com/questions/1776074/visual-studio-net-like-property-window-in-asp-net/1776088#1776088 1 Answer by leppie for Visual Studio.NET like property window in ASP.NET leppie 2009-11-21T17:16:45Z 2009-11-21T17:16:45Z <p>I wrote one ages back. It is hosted on CodePlex. I don't support the project.</p> <p><a href="http://propertygrid.codeplex.com/" rel="nofollow">http://propertygrid.codeplex.com/</a></p> http://stackoverflow.com/questions/1775682/xml-serializer-why-deserialization-doesnt-work-in-my-case/1775693#1775693 4 Answer by leppie for XML Serializer: why deserialization doesn't work in my case? leppie 2009-11-21T14:58:27Z 2009-11-21T14:58:27Z <pre><code>myOptions2 = (MyOptions)deserializer.Deserialize(textReader); </code></pre> <p>You need to return that object. Or use a ref parameter.</p> http://stackoverflow.com/questions/1773372/reflector-doenst-show-class-implementation/1775445#1775445 0 Answer by leppie for Reflector doens't show class implementation leppie 2009-11-21T13:09:57Z 2009-11-21T13:09:57Z <p>I have seen this with the VSSDK assemblies too.</p> <p>It could be a public provided interface library, but the actual implementation is 'hidden' somewhere. (Maybe in the GAC?)</p> <p>The basic train of thought is:</p> <ol> <li>Compile code against some 'stub' assembly</li> <li>When loaded in the application, the stub assembly is not resolved, but the actual one</li> </ol> <p>I suggest you place a breakpoint in the debugger, and see what is the actual loaded assembly and where it is loaded from.</p> http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s/1775136#1775136 1 Answer by leppie for Creating a user interface for monitoring and interacting with a running windows service leppie 2009-11-21T10:39:39Z 2009-11-21T10:39:39Z <p>Your best bet is to use .NET remoting over an IPC channel.</p> <p>While it seems complicated to setup, it is rather easy the second time around. </p> <p>I suggest you play with a few samples first on exposing remotable objects from one application to another.</p> <p>I have not used Message queues before, so I can't comment on that.</p> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1772666#1772666 1 Answer by leppie for Code-Golf: What is the shortest program that compiles and crashes? leppie 2009-11-20T19:16:43Z 2009-11-20T19:16:43Z <p>C#, 37 chars</p> <pre><code>class F{static void Main(){Main();}} </code></pre> <p>Explodes stack.</p> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1772414#1772414 3 Answer by leppie for Code-Golf: What is the shortest program that compiles and crashes? leppie 2009-11-20T18:32:18Z 2009-11-20T18:32:18Z <p>Scheme:</p> <pre><code>() </code></pre> <p>Filler text</p> http://stackoverflow.com/questions/1769306/why-are-net-value-types-sealed/1770254#1770254 0 Answer by leppie for Why are .NET value types sealed? leppie 2009-11-20T12:51:40Z 2009-11-20T12:51:40Z <p>You could have some limited form of inheritance using generic type parameters on value types.</p> http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1769032#1769032 0 Answer by leppie for What are things that make a programmer's life miserable? leppie 2009-11-20T08:26:56Z 2009-11-20T08:26:56Z <p>Stupid user communities, that have no inch of respect for other's opinions. </p> http://stackoverflow.com/questions/1763774/linq-select-a-range-between-letters-eg-a-e/1763796#1763796 1 Answer by leppie for Linq select a range between letters, eg. a-e leppie 2009-11-19T14:48:09Z 2009-11-19T14:48:09Z <pre><code>where Enumerable.Range('A','E').Select(x =&gt; (char) x).Contains(title[0]) </code></pre> <p>(untested)</p> http://stackoverflow.com/questions/1763699/system-text-encoding-isnt/1763764#1763764 4 Answer by leppie for System.Text.Encoding isn't leppie 2009-11-19T14:43:45Z 2009-11-19T14:43:45Z <p>This is invalid UTF8 byte sequence.</p> <p>You need </p> <pre><code>byte[] original = new byte[] { 0xc2, 128 }; </code></pre> <p>Nothing to do with byte order marks.</p> <p><strong>Update</strong></p> <p>Or preferably you should do</p> <pre><code>char[] c = { (char)128 }; </code></pre> http://stackoverflow.com/questions/1763686/getexitcodeprocess-process-termination-status-codes/1763700#1763700 2 Answer by leppie for GetExitCodeProcess process termination status codes? leppie 2009-11-19T14:34:42Z 2009-11-19T14:34:42Z <p>That is application dependent. Contact the author of the application.</p> http://stackoverflow.com/questions/1757136/find-the-closest-time-from-a-list-of-times/1757197#1757197 0 Answer by leppie for Find the closest time from a list of times leppie 2009-11-18T16:20:50Z 2009-11-18T17:09:18Z <pre><code>var min = listoftimes.Select( x =&gt; new { diff = Math.Abs((x - timeoffile).Ticks), time = x}). OrderBy(x =&gt; x.diff). First().time; </code></pre> <p>Note: Assumes at least 1 entry in <code>listoftimes</code>.</p> http://stackoverflow.com/questions/1757214/linq-entity-string-field-contains-any-of-an-array-of-strings/1757227#1757227 0 Answer by leppie for LINQ: Entity string field contains any of an array of strings leppie 2009-11-18T16:25:07Z 2009-11-18T16:25:07Z <p>You have it the wrong way around :)</p> <p>It should be:</p> <pre><code>Where search.Contains(p.Description) </code></pre> http://stackoverflow.com/questions/1750943/how-to-set-value-of-input-typehidden-in-asp-net-pageload-without-using-run/1750952#1750952 1 Answer by leppie for How to set value of <input type="hidden"> in asp .net page_load without using runat="server"... leppie 2009-11-17T18:48:15Z 2009-11-17T18:48:15Z <p>IIRC, you need to look in the <code>HttpRequest.Forms</code>, somewhere in there.</p> http://stackoverflow.com/questions/1749201/building-a-reverse-language-dictionary/1749249#1749249 -1 Answer by leppie for Building a reverse language dictionary leppie 2009-11-17T14:26:10Z 2009-11-17T14:26:10Z <p>This sounds like a job for Prolog.</p> http://stackoverflow.com/questions/1746722/does-including-an-entire-namespace-slow-things-down/1746726#1746726 1 Answer by leppie for Does including an entire namespace slow things down? leppie 2009-11-17T05:10:44Z 2009-11-17T05:10:44Z <p>No, the compiler is fast enough. Not sure what else I can add :)</p> http://stackoverflow.com/questions/1744528/any-native-zip-packaging-for-net3-5/1744550#1744550 10 Answer by leppie for Any native ZIP/Packaging for .NET3.5 leppie 2009-11-16T20:08:28Z 2009-11-16T20:08:28Z <p><a href="http://msdn.microsoft.com/en-us/library/system.io.packaging.aspx" rel="nofollow">System.IO.Packaging</a></p> http://stackoverflow.com/questions/1741874/c-to-remove-the-last-character-from-stringbuilder/1741909#1741909 0 Answer by leppie for C# to remove the Last character from stringBuilder leppie 2009-11-16T12:31:59Z 2009-11-16T12:31:59Z <pre><code>sb.Length--; </code></pre> <p>OK?</p> http://stackoverflow.com/questions/1741857/remove-change-and-repair-buttons-in-add-or-remove-programs/1741901#1741901 1 Answer by leppie for Remove "Change" and "Repair" buttons in Add or Remove Programs leppie 2009-11-16T12:29:59Z 2009-11-16T12:29:59Z <p>Here is some registry key examples from NSIS. Should put you in the right direction.</p> <pre><code>HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2 "NoModify" 1 HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Example2 "NoRepair" 1 </code></pre> http://stackoverflow.com/questions/1724700/how-to-merge-multiple-controlcollections-in-c/1725023#1725023 0 Answer by leppie for How to merge multiple ControlCollections in C#? leppie 2009-11-12T20:07:28Z 2009-11-12T20:07:28Z <p>Tree extension method</p> <pre><code>static class TreeExtensions { public static IEnumerable&lt;R&gt;TraverseDepthFirst&lt;T, R&gt;( this T t, Func&lt;T, R&gt; valueselect, Func&lt;T, IEnumerable&lt;T&gt;&gt; childselect) { yield return valueselect(t); foreach (var i in childselect(t)) { foreach (var item in i.TraverseDepthFirst(valueselect, childselect)) { yield return item; } } } } </code></pre> <p>Usage:</p> <pre><code>Control c = root_form_or_control; var allcontrols = c.TraverseDepthFirst( x =&gt; x, x =&gt; x.Controls.OfType&lt;Control&gt;())).ToList(); </code></pre> http://stackoverflow.com/questions/1723884/linq-update-is-also-inserting-unwanted-rows/1723905#1723905 1 Answer by leppie for LInq update is also inserting unwanted rows leppie 2009-11-12T17:21:22Z 2009-11-12T17:21:22Z <p>Call <code>DataContext.GetChanges()</code> and see what else is captured. It might be from a previous 'non-committed' action on the data context.</p> http://stackoverflow.com/questions/1721415/profiling-library-for-net/1721467#1721467 1 Answer by leppie for Profiling Library for .NET leppie 2009-11-12T11:06:40Z 2009-11-12T11:06:40Z <p>You could look at the Process info for your own app, and perhaps record more info from WMI. </p> <p>Unfortunately, it does not really give you much to go on :(</p> http://stackoverflow.com/questions/1712082/diagnosing-runaway-cpu-in-a-net-production-application/1715910#1715910 0 Answer by leppie for Diagnosing runaway CPU in a .Net production application leppie 2009-11-11T15:25:14Z 2009-11-11T15:25:14Z <p>Use the Managed debugger. Helped me before. Just a few files needed. You could probably just see what is happening (perhaps exception handling stuck in a loop).</p> http://stackoverflow.com/questions/1715685/app-config-not-being-renamed-when-built-by-an-external-project/1715713#1715713 2 Answer by leppie for app.config not being renamed when built by an external project? leppie 2009-11-11T14:58:36Z 2009-11-11T15:16:00Z <p>.config files dont work for dll's. They need to match the startup executable's name.</p> <p><strong>Update:</strong></p> <p>I too, would like to find a good solution to this problem. Well .config management in general.</p> http://stackoverflow.com/questions/1714082/sql-server-compact-edition-3-5-does-the-data-persist-in-the-database-file/1714093#1714093 1 Answer by leppie for Sql Server Compact Edition 3.5: Does the data persist in the database file? leppie 2009-11-11T09:34:22Z 2009-11-11T09:34:22Z <p>In your project, set the copy options to 'Copy if newer' from 'Copy always'.</p> <p>If you do a rebuild, it will be deleted as well.</p> http://stackoverflow.com/questions/1712952/is-there-a-known-implementation-of-an-indexed-linked-list/1713462#1713462 0 Answer by leppie for Is there a known implementation of an indexed linked list? leppie 2009-11-11T06:40:32Z 2009-11-11T06:40:32Z <p>While I dont think you can get integer indexing, a backing hashtable might work if you are using 'reference' types.</p> http://stackoverflow.com/questions/1824938/no-form-submit-function-in-vb-net-or-c Comment by leppie on No Form.Submit() function in VB.NET or C#? leppie 2009-12-01T09:13:48Z 2009-12-01T09:13:48Z There is no C# or VB.NET in the browser. http://stackoverflow.com/questions/1824066/2-objects-sharing-same-data-the-challenge Comment by leppie on 2 Objects sharing same data - the challenge leppie 2009-12-01T05:10:08Z 2009-12-01T05:10:08Z Test 4 does not make sense. http://stackoverflow.com/questions/1789131/linq2sql-efficient-way-to-get-random-elements-with-weight Comment by leppie on Linq2sql: efficient way to get random elements with weight? leppie 2009-11-30T13:53:00Z 2009-11-30T13:53:00Z What is the purpose of the GUID besides random sorting? http://stackoverflow.com/questions/1816652/opengl-3-2-c-bindings Comment by leppie on OpenGL 3.2 C# bindings leppie 2009-11-29T20:26:17Z 2009-11-29T20:26:17Z 78 days since last checkin and you still havent made up your mind? :) hehe, I have ideas that been wasting for years in my head! http://stackoverflow.com/questions/1781426/weird-behaviour-of-seek-c Comment by leppie on weird behaviour of seek C# leppie 2009-11-23T06:33:26Z 2009-11-23T06:33:26Z spellcheck and reformat you question. http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s/1775136#1775136 Comment by leppie on Creating a user interface for monitoring and interacting with a running windows service leppie 2009-11-22T04:14:28Z 2009-11-22T04:14:28Z @Matt: Thanks. That just seems wrong. Remoting is a lot easier than WCF for IPC IMO. http://stackoverflow.com/questions/1776798/clojure-unable-to-resolve-symbol-im-stumped Comment by leppie on Clojure: Unable to resolve symbol. I'm stumped. leppie 2009-11-21T21:25:40Z 2009-11-21T21:25:40Z I dunno but Clojure, but in Scheme using eval requires some environment, and the error you are getting is what I would expect in Scheme. But alas, I dont know Clojure, so I cant help, but perhaps this will put you on the correct path. :) http://stackoverflow.com/questions/1776794/is-it-possible-to-extract-some-structured-information-from-the-exception-stacktra/1776806#1776806 Comment by leppie on Is it possible to extract some structured information from the Exception.StackTrace? leppie 2009-11-21T21:23:21Z 2009-11-21T21:23:21Z @Karim: that is the easier way :) http://stackoverflow.com/questions/1773372/reflector-doenst-show-class-implementation Comment by leppie on Reflector doens't show class implementation leppie 2009-11-21T13:04:47Z 2009-11-21T13:04:47Z @Randolpho: how can it be empty if it need to return something...? http://stackoverflow.com/questions/1774386/how-to-declare-events-on-class-library-dll-and-catch-them-on-form Comment by leppie on How to declare events on class library (dll) and catch them on form? leppie 2009-11-21T13:04:01Z 2009-11-21T13:04:01Z You handle events, you dont catch them :) http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s/1775136#1775136 Comment by leppie on Creating a user interface for monitoring and interacting with a running windows service leppie 2009-11-21T12:59:32Z 2009-11-21T12:59:32Z @Murph: WTF? How can remoting be deprecated in favour of WCF? Where did you read this baloney? http://stackoverflow.com/questions/1774670/c-threadpool-vs-tasks Comment by leppie on C# - ThreadPool vs Tasks leppie 2009-11-21T06:12:03Z 2009-11-21T06:12:03Z I think tasks utilizes the ThreadPool. http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1772392#1772392 Comment by leppie on Code-Golf: What is the shortest program that compiles and crashes? leppie 2009-11-21T06:07:23Z 2009-11-21T06:07:23Z @A.Rex: the post was edited. http://stackoverflow.com/questions/1762253/current-linux-kernel-debugging-techniques Comment by leppie on Current Linux Kernel debugging techniques leppie 2009-11-20T19:46:25Z 2009-11-20T19:46:25Z @tinkertim: you mean it is not enough? :) http://stackoverflow.com/questions/1772756/101-rx-examples Comment by leppie on 101 Rx Examples leppie 2009-11-20T19:45:02Z 2009-11-20T19:45:02Z I would like to see some docs too, all there seems to be is these videos...