User leppie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:52:09Zhttp://stackoverflow.com/feeds/user/15541http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821814/asp-net-1-1-issue/1821832#18218320Answer by leppie for ASP.NET 1.1 issueleppie2009-11-30T19:21:00Z2009-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#18180840Answer by leppie for C# / Windows Forms: error cs1519leppie2009-11-30T06:09:11Z2009-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#17798380Answer by leppie for Question about Environment.ProcessorCountleppie2009-11-22T20:17:15Z2009-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#17783000Answer by leppie for CMD Full Screen Visual Studioleppie2009-11-22T09:48:24Z2009-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#17760881Answer by leppie for Visual Studio.NET like property window in ASP.NETleppie2009-11-21T17:16:45Z2009-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#17756934Answer by leppie for XML Serializer: why deserialization doesn't work in my case?leppie2009-11-21T14:58:27Z2009-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#17754450Answer by leppie for Reflector doens't show class implementationleppie2009-11-21T13:09:57Z2009-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#17751361Answer by leppie for Creating a user interface for monitoring and interacting with a running windows serviceleppie2009-11-21T10:39:39Z2009-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#17726661Answer by leppie for Code-Golf: What is the shortest program that compiles and crashes?leppie2009-11-20T19:16:43Z2009-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#17724143Answer by leppie for Code-Golf: What is the shortest program that compiles and crashes?leppie2009-11-20T18:32:18Z2009-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#17702540Answer by leppie for Why are .NET value types sealed?leppie2009-11-20T12:51:40Z2009-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#17690320Answer by leppie for What are things that make a programmer's life miserable?leppie2009-11-20T08:26:56Z2009-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#17637961Answer by leppie for Linq select a range between letters, eg. a-eleppie2009-11-19T14:48:09Z2009-11-19T14:48:09Z<pre><code>where Enumerable.Range('A','E').Select(x => (char) x).Contains(title[0])
</code></pre>
<p>(untested)</p>
http://stackoverflow.com/questions/1763699/system-text-encoding-isnt/1763764#17637644Answer by leppie for System.Text.Encoding isn'tleppie2009-11-19T14:43:45Z2009-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#17637002Answer by leppie for GetExitCodeProcess process termination status codes?leppie2009-11-19T14:34:42Z2009-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#17571970Answer by leppie for Find the closest time from a list of timesleppie2009-11-18T16:20:50Z2009-11-18T17:09:18Z<pre><code>var min = listoftimes.Select(
x => new { diff = Math.Abs((x - timeoffile).Ticks), time = x}).
OrderBy(x => 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#17572270Answer by leppie for LINQ: Entity string field contains any of an array of stringsleppie2009-11-18T16:25:07Z2009-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#17509521Answer by leppie for How to set value of <input type="hidden"> in asp .net page_load without using runat="server"...leppie2009-11-17T18:48:15Z2009-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-1Answer by leppie for Building a reverse language dictionaryleppie2009-11-17T14:26:10Z2009-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#17467261Answer by leppie for Does including an entire namespace slow things down?leppie2009-11-17T05:10:44Z2009-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#174455010Answer by leppie for Any native ZIP/Packaging for .NET3.5leppie2009-11-16T20:08:28Z2009-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#17419090Answer by leppie for C# to remove the Last character from stringBuilderleppie2009-11-16T12:31:59Z2009-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#17419011Answer by leppie for Remove "Change" and "Repair" buttons in Add or Remove Programs leppie2009-11-16T12:29:59Z2009-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#17250230Answer by leppie for How to merge multiple ControlCollections in C#?leppie2009-11-12T20:07:28Z2009-11-12T20:07:28Z<p>Tree extension method</p>
<pre><code>static class TreeExtensions
{
public static IEnumerable<R>TraverseDepthFirst<T, R>(
this T t,
Func<T, R> valueselect,
Func<T, IEnumerable<T>> 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 => x,
x => x.Controls.OfType<Control>())).ToList();
</code></pre>
http://stackoverflow.com/questions/1723884/linq-update-is-also-inserting-unwanted-rows/1723905#17239051Answer by leppie for LInq update is also inserting unwanted rowsleppie2009-11-12T17:21:22Z2009-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#17214671Answer by leppie for Profiling Library for .NETleppie2009-11-12T11:06:40Z2009-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#17159100Answer by leppie for Diagnosing runaway CPU in a .Net production applicationleppie2009-11-11T15:25:14Z2009-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#17157132Answer by leppie for app.config not being renamed when built by an external project?leppie2009-11-11T14:58:36Z2009-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#17140931Answer by leppie for Sql Server Compact Edition 3.5: Does the data persist in the database file?leppie2009-11-11T09:34:22Z2009-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#17134620Answer by leppie for Is there a known implementation of an indexed linked list?leppie2009-11-11T06:40:32Z2009-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-cComment by leppie on No Form.Submit() function in VB.NET or C#?leppie2009-12-01T09:13:48Z2009-12-01T09:13:48ZThere is no C# or VB.NET in the browser.http://stackoverflow.com/questions/1824066/2-objects-sharing-same-data-the-challengeComment by leppie on 2 Objects sharing same data - the challengeleppie2009-12-01T05:10:08Z2009-12-01T05:10:08ZTest 4 does not make sense.http://stackoverflow.com/questions/1789131/linq2sql-efficient-way-to-get-random-elements-with-weightComment by leppie on Linq2sql: efficient way to get random elements with weight?leppie2009-11-30T13:53:00Z2009-11-30T13:53:00ZWhat is the purpose of the GUID besides random sorting?http://stackoverflow.com/questions/1816652/opengl-3-2-c-bindingsComment by leppie on OpenGL 3.2 C# bindings leppie2009-11-29T20:26:17Z2009-11-29T20:26:17Z78 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-cComment by leppie on weird behaviour of seek C#leppie2009-11-23T06:33:26Z2009-11-23T06:33:26Zspellcheck and reformat you question.http://stackoverflow.com/questions/1775124/creating-a-user-interface-for-monitoring-and-interacting-with-a-running-windows-s/1775136#1775136Comment by leppie on Creating a user interface for monitoring and interacting with a running windows serviceleppie2009-11-22T04:14:28Z2009-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-stumpedComment by leppie on Clojure: Unable to resolve symbol. I'm stumped.leppie2009-11-21T21:25:40Z2009-11-21T21:25:40ZI 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#1776806Comment by leppie on Is it possible to extract some structured information from the Exception.StackTrace?leppie2009-11-21T21:23:21Z2009-11-21T21:23:21Z@Karim: that is the easier way :)http://stackoverflow.com/questions/1773372/reflector-doenst-show-class-implementationComment by leppie on Reflector doens't show class implementationleppie2009-11-21T13:04:47Z2009-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-formComment by leppie on How to declare events on class library (dll) and catch them on form?leppie2009-11-21T13:04:01Z2009-11-21T13:04:01ZYou 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#1775136Comment by leppie on Creating a user interface for monitoring and interacting with a running windows serviceleppie2009-11-21T12:59:32Z2009-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-tasksComment by leppie on C# - ThreadPool vs Tasksleppie2009-11-21T06:12:03Z2009-11-21T06:12:03ZI think tasks utilizes the ThreadPool.http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1772392#1772392Comment by leppie on Code-Golf: What is the shortest program that compiles and crashes?leppie2009-11-21T06:07:23Z2009-11-21T06:07:23Z@A.Rex: the post was edited.http://stackoverflow.com/questions/1762253/current-linux-kernel-debugging-techniquesComment by leppie on Current Linux Kernel debugging techniquesleppie2009-11-20T19:46:25Z2009-11-20T19:46:25Z@tinkertim: you mean it is not enough? :)http://stackoverflow.com/questions/1772756/101-rx-examplesComment by leppie on 101 Rx Examplesleppie2009-11-20T19:45:02Z2009-11-20T19:45:02ZI would like to see some docs too, all there seems to be is these videos...