User Mudu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:47:48Z http://stackoverflow.com/feeds/user/17713 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/556199/could-not-load-microsoft-visualstudio-web-toolboxitemconfiguration-in-windows-for 0 Could not load Microsoft.VisualStudio.Web.ToolboxItemConfiguration in Windows Forms project Mudu 2009-02-17T10:19:46Z 2009-11-13T18:56:15Z <p>Hi all</p> <p>Need help in a very strange questions (at least it seems strange to me). I have a solution with one Windows Forms project and a few class libraries. There is a Service Reference added to the Windows Forms project.</p> <p>When launching Visual Studio, I get the following error message:</p> <blockquote> <p>Could not load type 'Microsoft.VisualStudio.Web.ToolboxItemConfiguration' from assembly 'Microsoft.VisualStudio.Web, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.</p> </blockquote> <p>It is titles "Microsoft Visual Studio" and has an Error icon. First thing that seems strange to me is that a <strong>Windows Forms only project is in trouble with some Web stuff</strong>. Moreover, I cannot find any reference to the assembly which is mentioned, not even when doing a full text search over the entire solution.</p> <p>I'm <strong>not sure what the exact effect is</strong>. One thing is that I cannot see my own User Controls in the tool box. Maybe there are other problems that I haven't noticed yet. But in general it does not completely prevent me from working with the solution.</p> <p>Doing a Google search for the error message returns <strong>zero results</strong>, searching for parts of it did not help me. Does anybody have an idea, maybe just <strong>a little hint</strong> for a direction to go? I'd greatly appreciate.</p> <p>I'm working on .NET 3.5 SP1, using the C# language, Visual Studio 2008 and Windows Vista.</p> <p>Cheers Matthias</p> http://stackoverflow.com/questions/1502814/updatepanel-update-nothing-seems-to-happen 0 UpdatePanel.Update(), nothing seems to happen Mudu 2009-10-01T09:05:16Z 2009-10-01T09:51:27Z <p>Hi folks</p> <p>I'm working with an <strong>UpdatePanel</strong> that I'd like to <strong>refresh programmatically on the server side</strong>. The reason is I display some data that takes a pretty long time to load, so I need to display the page and some sort of progress meanwhile.</p> <p>What I did is the following, on a page with one UpdatePanel and one ScriptManager:</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if(scriptManager.IsInAsyncPostBack) testLabel.Text = "AfterUpdate"; else jobsUpdatePanel.Update(); } </code></pre> <p>This does not what I'd like to do: I'd like <strong>the page to be displayed and immediately trigger an asynchronous update</strong> of the UpdatePanel in order to load the data - which is what I do instead of assigning another silly text to <code>testLabel</code>.</p> <p>This is the markup of the UpdatePanel (leaving the ContentTemplete away for the sake of readability):</p> <pre><code>&lt;asp:UpdatePanel ID="jobsUpdatePanel" UpdateMode="Conditional" ChildrenAsTriggers="true" runat="server"&gt; </code></pre> <p>There is no postback performed at all. Can anybody give me a hint what I'm doing wrong?</p> <p>Matthias</p> http://stackoverflow.com/questions/606190/updating-multiple-selected-inofitypropertychange-objects-in-datagridview 0 Updating multiple selected INofityPropertyChange objects in DataGridView Mudu 2009-03-03T12:22:55Z 2009-09-28T14:00:03Z <p>Hi all</p> <p>I'm working with a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.aspx" rel="nofollow"><code>DataGridView</code> (Windows Forms)</a> with MultiSelect enabled which is placed in a User Control. I'd like to update all selected rows from outside the User Control by calling a public method that implements the following code:</p> <pre><code>foreach(DataGridViewRow dr in dataGridView.SelectedRows) { MyBusiness business = (MyBusiness)dr.DataBoundItem; business.Rating = 5; } </code></pre> <p>Unfortunately, when multiple rows are selected, only one <code>DataGridViewRow</code> is immediately refreshed, namely the one that was last selected. The underlying objects are changed, and the NotifyPropertyChange-event is fired. Moreover, when I change the selection after update, I see all rows updated exactly as I'd like them to be immediately.</p> <p>Second thing, very strange: When I set a breakpoint in the Setter of the <code>Rating</code>-property where NotifyPropertyChange is fired and wait there a few seconds before continuing code execution, everything works well (all rows are immediately updated). If I don't wait but press F5 very quickly each time the breakpoint is passed, I get the effect described above.</p> <p>My business object looks like this (significantly shortened of course):</p> <pre><code>public class MyBusiness : INotifyPropertyChanged { private int _rating; public int Rating { get { return _rating; } set { if(_rating != value) { _rating = value; NotifyPropertyChanged("Rating"); } } } #region INotifyPropertyChanged Members public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged(string propertyName) { if(PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } #endregion } </code></pre> <p>Has anybody already noticed this behavior too, or even knows a solution (or a workaround)?</p> <p>Thank you for reading up to here. Any help is greatly appreciated :)</p> <p>Matthias</p> http://stackoverflow.com/questions/92811/reverse-engineering-for-database-diagramming-in-visio-with-sql-server-2008 7 Reverse Engineering for Database Diagramming in Visio with SQL Server 2008 Mudu 2008-09-18T14:03:40Z 2009-09-22T23:24:59Z <p>I need to reverse engineer a <strong>Microsoft SQL Server 2008</strong> in order to create a <strong>Microsoft Visio 2007 Database Model Diagram</strong>. So I choose <strong>Reverse Engineer</strong> from the Database menu to connect to the DB.</p> <p>I configured the Microsoft SQL Server Visio driver so that is uses SQL Server Native Client 10.0 as the ODBC driver. Afterwards I created a User DSN which connects to my DB. This DSN works (at least the provided test is successful). After clicking next in the Reverse Engineer Wizard, Visio kindly asks for my credentials which I properly provide, but after clicking OK I receive the following message:</p> <blockquote> <p>The currently selected Visio driver is not compatible with the data source.</p> </blockquote> <p>I tried using the old SQL Server ODBC driver, by also reconfiguring the Visio driver of course. It does not work too. Any help would be cool!</p> <p>Kind regards Matthias</p> http://stackoverflow.com/questions/1294184/type-conversion-in-persisted-computed-column 0 Type Conversion in Persisted Computed Column Mudu 2009-08-18T14:17:46Z 2009-08-18T14:45:03Z <p>Hi everybody</p> <p>I'm working with 2 related tables in a Microsoft SQL Server 2008 environment which are connected via a GUID. In one table, the field has the type <code>varchar(50)</code>, the other one is properly types as <code>uniqueidentifier</code>. This is obviously bad but I can't change this now because it's given by a legacy piece of software.</p> <p>The conversion SQL Server needs to perform at each inner join makes queries running terribly slow, since I can't use indices at all. I tried adding a Computed Column, which is persisted, to get the ID stored as a <code>uniqueidentifer</code>. This way I could add an index to get it running much faster probably. I failed.</p> <p>Does anybody know if I can store an explicitly converted value in a computer column. If I can, what's the formula to use here?</p> <p>Cheers, Matthias</p> http://stackoverflow.com/questions/767398/janus-gridex-for-asp-net-designer-support 0 Janus GridEx for ASP.NET Designer Support Mudu 2009-04-20T08:31:52Z 2009-08-12T16:26:01Z <p>Hi all</p> <p>I've been working with Janus GridEx for Web for a few days. I'm afraid I'm unable to open the GridEx designer (Grid context menu in ASP.NET designer), which makes real work fairly impossible or at least unproductive. I get the following error message:</p> <blockquote> <p>Error invoking 'GridEX Designer'. Details:Exception has been thrown by the target of an invocation.</p> </blockquote> <p>Unfortunately this error message doesn't really tell me anything about the real error. In Janus Forums, somebody had the same issue. The support guy recommended to check version and Local Copy property, but this isn't the cause of the problem (neither mine nor the guy's in Janus Forum).</p> <p>Thank you for any help.</p> <p>Greets Matthias</p> http://stackoverflow.com/questions/659351/deleting-temporary-files-after-usage 4 Deleting Temporary Files after usage Mudu 2009-03-18T17:36:12Z 2009-08-06T19:28:26Z <p>Hi folks</p> <p>I need to work with some temporary files in my Windows Forms .NET 3.5 application. Those files are opened in an external application that can of course be running for a longer time than my own program.</p> <p>Are there any best practices to make sure these temporary files are cleaned up at any time in order to avoid filling the user's hard disk with "junk" files which aren't needed anymore? Or does even Windows kind of handle this automatically?</p> <p>A nice example is any mail client: When you open an attachment in any application, it is usually written to a temporary file which is opened. Is there a way to figure out how those files manage cleanup?</p> <p>Using Google has shown me many, many cleanup and tune-up tools to clean the temp directory by hand, but I'd not like to force the users to do so. :-)</p> <p>Any help is appreciated.</p> <p>Matthias</p> http://stackoverflow.com/questions/249779/datagridview-sort-and-e-g-bindinglistt-in-net 2 DataGridView sort and e.g. BindingList<T> in .NET Mudu 2008-10-30T10:46:58Z 2009-07-24T14:41:52Z <p>Hi Folks</p> <p>I'm using a <code>BindingList&lt;T&gt;</code> in my Windows Forms that contains a list of "<code>IComparable&lt;Contact&gt;</code>" Contact-objects. Now I'd like the user to be able to sort by any column displayed in the grid.</p> <p>There is a way described on MSDN online which shows how to implement a custom collection based on <code>BindingList&lt;T&gt;</code> which allows sorting. But isn't there a Sort-event or something that could be caught in the DataGridView (or, even nicer, on the BindingSource) to sort the underlying collection using custom code?</p> <p>I don't really like the way described by MSDN. The other way I could easily apply a LINQ query to the collection.</p> <p>Thanks for any help :)</p> <p>Matthias</p> http://stackoverflow.com/questions/1130062/what-is-the-execution-sequence-of-group-by-having-and-where-clause-in-sql-server/1130072#1130072 5 Answer by Mudu for What is the execution sequence of Group By,Having and Where clause in SQL server? Mudu 2009-07-15T08:14:37Z 2009-07-15T08:14:37Z <p>WHERE is first, then you GROUP the result of the query, and last but not least HAVING-clause is taken to filter the grouped result. This is the "logical" order, I don't know how this is technically implemented in the engine.</p> <p>Not sure whether I got your question properly. Is this what you wanted to know?</p> <p>Matthias</p> http://stackoverflow.com/questions/1129915/asp-net-exception-handling-logging/1130006#1130006 0 Answer by Mudu for ASP.NET Exception Handling/Logging Mudu 2009-07-15T07:55:31Z 2009-07-15T07:55:31Z <p>ASP.NET Health Monitoring does this in an elegant and fairly automatic way (no need to manually catch exceptions):</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/bb398933.aspx" rel="nofollow">ASP.NET Health Monitoring Overview</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms998306.aspx" rel="nofollow">How To: Use Health Monitoring in ASP.NET 2.0</a></li> </ul> <p>When you click the first link, there is an example of how to enable and configure ASP.NET Health Monitoring. You need to configure it in web.config file.</p> <p>For logging to a DB, you can create the corresponsing table using the ASP.NET SQL Server Registration Tool: <a href="http://msdn.microsoft.com/en-us/library/ms229862%28VS.80%29.aspx" rel="nofollow">ASP.NET SQL Server Registration Tool (Aspnet_regsql.exe) </a></p> <p>I really like it. For manual logging, <a href="http://entlib.codeplex.com/" rel="nofollow">patterns &amp; practices Enterprise Library's Logging Application Block</a> might be something for you, but this is slightly off-topic.</p> <p>Matthias</p> http://stackoverflow.com/questions/1125470/generation-of-email-validation-links 3 Generation of Email Validation Links Mudu 2009-07-14T13:41:25Z 2009-07-14T13:56:31Z <p>Hi all</p> <p>For a Web Application I'd like to generate an email validation link and send it to the user. Like on many public websites, the user should click it to validate his email address. Looks similar to this:</p> <p><a href="http://www.foo.bar/validation?code=421affe123j4h141k2l3bjkbf43134kjbfkl34bfk3b4fkjb43ffe" rel="nofollow">http://www.foo.bar/validation?code=421affe123j4h141k2l3bjkbf43134kjbfkl34bfk3b4fkjb43ffe</a></p> <p>Can anybody help me with some hints about the proper generation of those validation tokens? Googling best practices turned out to be more difficult than I though it would be. The links should:</p> <ul> <li>... not require the user to log in first.</li> <li>... not reveal any login credentials to keep the application secure</li> <li>... allow me as a developer to efficiently validate the token. I'm pretty sure I need a way to extract the user identifier out of the code to meet this criteria. Don't I?</li> </ul> <p>Furthermore, would you go for a random code, which is saved somewhere, or a generated code which I can recalculate for validation?</p> <p>Thanks for any replies!</p> <p>Matthias</p> <p>P.S. I'm working with ASP.NET 3.5, in case there's an out-of-the-box feature to perform this.</p> http://stackoverflow.com/questions/857973/linq-to-entities-sql-in-clause/1108407#1108407 0 Answer by Mudu for Linq to Entities - Sql "IN" clause Mudu 2009-07-10T08:34:08Z 2009-07-10T08:34:08Z <p>I also tried to work with an SQL-IN-like thing - querying against an <strong>Entity Data Model</strong>. My approach is a string builder to compose a big OR-expression. That's terribly ugly, but I'm afraid it's the only way to go right now.</p> <p>Now well, that looks like this:</p> <pre><code>Queue&lt;Guid&gt; productIds = new Queue&lt;Guid&gt;(Products.Select(p =&gt; p.Key)); if(productIds.Count &gt; 0) { StringBuilder sb = new StringBuilder(); sb.AppendFormat("{0}.ProductId = Guid\'{1}\'", entities.Products.Name, productIds.Dequeue()); while(productIds.Count &gt; 0) { sb.AppendFormat(" OR {0}.ProductId = Guid\'{1}\'", entities.Products.Name, productIds.Dequeue()); } } </code></pre> <p><strong>Working with GUIDs in this context</strong>: As you can see above, there is always the word "GUID" before the GUID ifself in the query string fragments. If you don't add this, <code>ObjectQuery&lt;T&gt;.Where</code> throws the following exception:</p> <blockquote> <p>The argument types 'Edm.Guid' and 'Edm.String' are incompatible for this operation., near equals expression, line 6, column 14.</p> </blockquote> <p>Found this in MSDN Forums, might be helpful to have in mind.</p> <p>Matthias</p> <p>... looking forward for the next version of .NET and Entity Framework, when everything get's better. :)</p> http://stackoverflow.com/questions/1072745/making-a-static-asp-net-site-which-has-100-pages/1072756#1072756 0 Answer by Mudu for Making a static ASP.NET site which has 100+ pages. Mudu 2009-07-02T06:12:16Z 2009-07-02T06:12:16Z <p>Take a look <a href="http://www.asp.net/mvc/" rel="nofollow">at ASP.NET MVC</a>. It uses <a href="http://msdn.microsoft.com/en-us/library/cc668201.aspx" rel="nofollow">ASP.NET Routing</a>, which may help you.</p> <p>Alternatively you can use <a href="http://msdn.microsoft.com/en-us/library/cc668201.aspx" rel="nofollow">ASP.NET Routing</a> without MVC, too.</p> <p>Matthias</p> http://stackoverflow.com/questions/304606/unregistering-event-with-operator 0 Unregistering Event with -=-Operator Mudu 2008-11-20T08:05:26Z 2009-06-30T04:05:19Z <p>Hi</p> <p>When opening a window, I register a Deleted-event-handler on my business object. It is passed to the constructor as <code>business</code>:</p> <pre><code>business.Deleted += new EventHandler&lt;EventArgs&gt;(business_Deleted); </code></pre> <p>Now the user can click a button to delete it (removing the record, you know). The event handler is registered to capture deletion by other editor windows and notifying the user ("Item has been deleted in another editor window.").</p> <p>If the user deletes it in the current window, this message would be stupid, so I'd like to unregister the event before:</p> <pre><code>Business business = (Business)businessBindingSource.DataSource; business.Deleted -= new EventHandler&lt;EventArgs&gt;(business_Deleted); </code></pre> <p>My problem is simple: The message is displayed anyway, so unregistering does not work. I tried storing the EventHandler in a separate member. Does not work either.</p> <p>Any help would be cool.</p> <p>Matthias</p> <p>P.S. Reading <a href="http://stackoverflow.com/questions/99790/is-it-safe-to-add-delegates-to-events-with-keyword-new#100719">this post</a>, I'm afraid that properly unregistering the event could make it unregistered for all editor windows. Could be the next problem. ;-)</p> http://stackoverflow.com/questions/1058650/whats-the-best-net-technical-thing-youve-learned-over-the-past-3-years/1058677#1058677 8 Answer by Mudu for What's the best .Net technical thing you've learned over the past 3 years? Mudu 2009-06-29T14:35:06Z 2009-06-29T14:35:06Z <p>LINQ and Lambdas, for sure.</p> <p>Matthias</p> http://stackoverflow.com/questions/1043060/dataset-enumerator-and-findbyid-do-not-return-equal-datarow 0 DataSet: Enumerator and FindById do not return equal DataRow Mudu 2009-06-25T10:09:32Z 2009-06-25T10:31:41Z <p>Hi folks</p> <p>Today's problem in my code is kind of strange, and I could not reproduce it yet. I'm working with a typed dataset (created with the designer) and I'm looping over all rows in a datatable.</p> <p>Sometimes (!), when finding via primary key, the returned row is not equal to the one from the enumerator. This is some code I wrote to reproduce the issue:</p> <pre><code>foreach(DataSet1.DataTable1Row dr in ds.DataTable1) { if(ds.DataTable1.FindById(dr.Id) != dr) Console.Write(dr.Id); } </code></pre> <p>No line will be written to the console, because FindById always returns the same row, which is really logical. In my project's code, with a similar dataset with a few String columns, in about 3% of the rows (always the same rows!) it doesn't, and one of the String fields is just empty:</p> <pre><code>ds.DataTable1.FindById(dr.Id) != dr // returns false, for whatever reason </code></pre> <p>The primary key is the only primary key field, and therefor FindById is a generated method. Does anybody know a little hint or did experience the same problem before? I'm afraid it's a very very special case I made that enables this bug or feature. :)</p> <p>I thought about the possibility of this being produced by the cast done by the enumeration. The enumerator does work with the <code>DataRow</code> base type of the generated typed rows. But I didn't find something wrong there...</p> <p>Cheers Matthias</p> http://stackoverflow.com/questions/968966/inserting-multiple-rows-in-sql/968975#968975 5 Answer by Mudu for Inserting multiple rows in SQL Mudu 2009-06-09T09:04:22Z 2009-06-09T09:04:22Z <p>Hi Alex</p> <pre><code>INSERT INTO new_table1(Id, Field1) SELECT Id, Field1 FROM table1_bu </code></pre> <p>Greets, Matthias</p> http://stackoverflow.com/questions/767398/janus-gridex-for-asp-net-designer-support/776041#776041 0 Answer by Mudu for Janus GridEx for ASP.NET Designer Support Mudu 2009-04-22T07:31:38Z 2009-05-05T09:39:17Z <p>Original text of this post:</p> <blockquote> <p>I just figured out how to open the GridEx designer. Visual Studio needs to be running as Administrator ("Run as Administrator" in Vista, and confirm the UAC message). Don't like that personally, but it works fine.</p> </blockquote> <p>This is right so far, the message does not appear anymore. The designer did open, but did not save any changes. In Janussys forum, support staff had not seen this behavior before.</p> <p>Currently the problem is different (I'd say even worse): The designer does not open, but the message mentioned in the opening post doesn't appear anymore. Just nothing happens. UAC is still disabled, and Visual Studio running as Administrator. I completely reinstalled the component with UAC disabled.</p> <p>Any help is greatly appreciated. It's actually starting to drive me bloody crazy... ;)</p> <p>Greets Matthias</p> <p>P.S. I know "Doesn't work!" is no proper error description at all, but in this case I just don't know better. :)</p> http://stackoverflow.com/questions/794369/should-c-introduce-a-syntactic-short-hand-for-ienumerablet/797056#797056 1 Answer by Mudu for Should C# introduce a syntactic short-hand for IEnumerable<T>? Mudu 2009-04-28T09:43:21Z 2009-04-28T09:43:21Z <p>I'd vote <strong>yes</strong>, too. I'm quite sure I'd love this more than the Nullable-notation. :)</p> <p>Personally I like the star, because it's a sign that is well-known for <strong>multiplicities in some model syntax definitions</strong>, e.g. conceptional DB models. But I do understand that it's bad for developers familiar with the "C-style pointer syntax".</p> <p>By the way, is there already kind of official post to the C# language designers, or even some kind of discussion?</p> http://stackoverflow.com/questions/776990/whether-should-i-use-try-or-using-in-c/777002#777002 3 Answer by Mudu for Whether should I use try{} or using() in C# ? Mudu 2009-04-22T12:36:05Z 2009-04-22T12:36:05Z <p><code>using</code> is completely different from try/catch. A <code>using</code> block is used to ensure an <code>IDisposable</code> ist disposed, which means <code>Dispose()</code> is called. Try, catch and finally handles exception. A <code>using</code> block is similar to:</p> <pre><code>IDisposable d; try { d = m; } finally { d.Dispose(); } </code></pre> <p>The difference between this and a <code>using</code> is the scope of the variable, because with <code>using</code> it is created inside the block.</p> <p><code>m</code> is a placeholder for any object construction. For further information see MSDN under <code>using</code>, <code>IDisposable</code>. Especially the information about disposing, garbage collection and unmanaged resources are worth being read. :)</p> <p>Matthias</p> http://stackoverflow.com/questions/676880/dictionary-enumeration-in-c/676888#676888 7 Answer by Mudu for Dictionary enumeration in c# Mudu 2009-03-24T10:51:28Z 2009-03-24T10:51:28Z <p>Foreach. There are three ways: You can enumerate over the <code>Keys</code> property, over the <code>Values</code> property or over the dictionary itself which is an enumerator of <code>KeyValuePair&lt;TKey, TValue&gt;</code>.</p> <p>Matthias</p> http://stackoverflow.com/questions/654536/outlook-navigation-bar-control-for-net-application/654593#654593 0 Answer by Mudu for Outlook navigation bar control for .NET application Mudu 2009-03-17T14:56:44Z 2009-03-17T16:41:53Z <p>For WPF you can use divelements' SandShell control:</p> <p><a href="http://www.divelements.co.uk/net/controls/sandshellwpf/" rel="nofollow">SandShell for WPF Overview</a></p> <p><em>Edit: This is not free, haven't read the question carefully enough.</em></p> <p>Matthias</p> http://stackoverflow.com/questions/653674/c-3-0-autoproperties-whats-the-difference/653683#653683 0 Answer by Mudu for C# 3.0 Autoproperties - whats the difference? Mudu 2009-03-17T10:33:47Z 2009-03-17T10:33:47Z <p>The first one is just a public field, the second one is a so-called automatic property. Automatic properties are changed to regular properties with a backing field by the C# compiler.</p> <p>Public fields and properties are equal in C# syntax, but they are different in IL (read this on a German forum recently, can't give you the source, sorry).</p> <p>Matthias</p> http://stackoverflow.com/questions/643723/c-and-net-3-5-how-to-launch-a-process-using-different-credentials-with-a-hid/643743#643743 0 Answer by Mudu for C# and .NET 3.5 - How to launch a process using different credentials, with a hidden window, and being able to capture standard output and exit code? Mudu 2009-03-13T17:23:25Z 2009-03-13T17:23:25Z <p>This should work well with the <code>Process</code> class and <code>ProcessStartInfo</code>.</p> <p>Different credentials:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.username.aspx" rel="nofollow">ProcessStartInfo.UserName Property</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.password.aspx" rel="nofollow">ProcessStartInfo.Password Property</a></li> </ul> <p>Redirect standard output:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx" rel="nofollow">ProcessStartInfo.RedirectStandardOutput Property</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardoutput.aspx" rel="nofollow">Process.StandardOutput Property</a></li> </ul> <p>Exit code:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.exitcode.aspx" rel="nofollow">Process.ExitCode Property</a></li> </ul> <p>I hope this helps.</p> <p>Matthias</p> http://stackoverflow.com/questions/638496/what-is-fastest-int-convert-toint32x-or-int32-parsex/638516#638516 0 Answer by Mudu for What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)? Mudu 2009-03-12T13:00:16Z 2009-03-12T13:00:16Z <p>Not sure about performance, but these methods aren't the same at all. Both <code>Parse</code> and <code>TryParse</code> work with string, the <code>String</code> representation of an object is parsed (see MSDN).</p> <blockquote> <p>Converts the string representation of a number to its 32-bit signed integer equivalent.</p> </blockquote> <p>Not sure about casting and the <code>Convert</code> class, but cast is only for objects that are already integers in fact but not strongly typed.</p> <p>Matthias</p> http://stackoverflow.com/questions/638463/compiler-error-referencing-custom-c-extension-method/638474#638474 5 Answer by Mudu for Compiler error referencing custom C# extension method Mudu 2009-03-12T12:49:11Z 2009-03-12T12:49:11Z <p>Did you import (<code>using</code> clause at the beginning) the namespace in which <code>Extensions</code>class is?</p> <pre><code>using Myself.MyProduct.MyNamespace; </code></pre> <p>Matthias</p> http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application/629945#629945 1 Answer by Mudu for What is the difference between WPF and Silverlight application ? Mudu 2009-03-10T12:39:21Z 2009-03-10T12:39:21Z <p>Silverlight is a subset of WPF. Once it was known as WPF/E (WPF everywhere). In fact, the base framework is similar, but not the same.</p> <p>See this for further information: <a href="http://dotnetslackers.com/articles/silverlight/SilverlightFirstStepsAnalogClock.aspx" rel="nofollow"> Silverlight "WPF/E" first steps: Getting started with simple analog clock, Introduction - What is WPF/E?</a></p> <p>Matthias</p> http://stackoverflow.com/questions/619369/why-does-this-silverlight-animation-make-the-entire-layout-disappear/619387#619387 0 Answer by Mudu for Why does this silverlight animation make the entire layout disappear? Mudu 2009-03-06T16:12:53Z 2009-03-06T16:12:53Z <p>Last time I worked with Silverlight was in earlier 2008. In Beta versions of Silverlight sometimes the entire layout just disappeared (stayed white and empty) when <em>any</em> error occured, instead of an error message.</p> <p>Not sure if this is still the case in current versions. Can you (or did you already) step through the code to check if an exception is thrown... or catch it programmatically and render some kind of error message?</p> <p>Hope I could help you a little bit.</p> <p>Matthias</p> http://stackoverflow.com/questions/614517/persisting-form-data-in-win-forms-applications/614695#614695 0 Answer by Mudu for Persisting form data in Win forms applications. Mudu 2009-03-05T13:12:52Z 2009-03-05T13:12:52Z <p>I recommend you to build a separate object contain the data. You can bind the form controls to its properties in a very simple way (designer supported, no code required). This keeps your data separated from the form.</p> <p>In case you don't know this document yet: <a href="http://msdn.microsoft.com/en-us/library/sw223a62.aspx" rel="nofollow">How to: Create a Simple-Bound Control on a Windows Form</a></p> <p>Matthias</p> http://stackoverflow.com/questions/585215/can-i-rewrite-this-more-elegantly-using-linq/585250#585250 1 Answer by Mudu for Can I rewrite this more elegantly using LINQ? Mudu 2009-02-25T09:08:53Z 2009-02-25T09:08:53Z <p>You can do it with LINQ, but I'm not sure if you like this one better than yours. I'm afraid you don't. :)</p> <pre><code>var q = String.Join(Environment.NewLine, (from a in d select String.Join(", ", (from b in a select b.ToString()).ToArray())).ToArray()); </code></pre> <p>Cheers, Matthias</p> http://stackoverflow.com/questions/1502814/updatepanel-update-nothing-seems-to-happen/1502973#1502973 Comment by Mudu on UpdatePanel.Update(), nothing seems to happen Mudu 2009-10-01T10:16:47Z 2009-10-01T10:16:47Z Well, I've thought about a method to render some client script that immediately posts back - instead of messing with client script on my own, not really pushing updates. :) http://stackoverflow.com/questions/1471995/insert-into-table Comment by Mudu on insert into #table Mudu 2009-09-24T15:58:49Z 2009-09-24T15:58:49Z Let me place an additional note about table variables here: They're stored in memory, but you cannot create non-clustered indices on them, so queries might sometimes be slower (of course, as usual in DB development, this depends considerably on the situation!). http://stackoverflow.com/questions/1294184/type-conversion-in-persisted-computed-column/1294221#1294221 Comment by Mudu on Type Conversion in Persisted Computed Column Mudu 2009-08-18T14:51:32Z 2009-08-18T14:51:32Z Thank you, works great. Query takes 4sec instead of half an hour now. :) http://stackoverflow.com/questions/1294184/type-conversion-in-persisted-computed-column/1294222#1294222 Comment by Mudu on Type Conversion in Persisted Computed Column Mudu 2009-08-18T14:50:32Z 2009-08-18T14:50:32Z Works well. Management Studio says <code>Error validating the formula for column 'MyColumn'.</code>, but nevertheless saves the changes and it works. Strange... http://stackoverflow.com/questions/1072745/making-a-static-asp-net-site-which-has-100-pages/1072756#1072756 Comment by Mudu on Making a static ASP.NET site which has 100+ pages. Mudu 2009-07-02T07:33:07Z 2009-07-02T07:33:07Z I think you can do this using MVC and Routing: A single page is one record in your DB, thus the controller can pass the record (page content) to the view. This requires just one single view that accepts a page content object as a parameter. See &quot;The List Action, View&quot; in <a href="http://blogs.msdn.com/brada/archive/2008/01/29/asp-net-mvc-example-application-over-northwind-with-the-entity-framework.aspx" rel="nofollow">blogs.msdn.com/brada/archive/&hellip;</a> for an example. http://stackoverflow.com/questions/1067673/can-dispose-really-free-the-memory-if-there-are-other-objects-pointing-to-it/1067762#1067762 Comment by Mudu on Can Dispose really free the memory if there are other objects pointing to it? Mudu 2009-07-01T08:04:16Z 2009-07-01T08:04:16Z I'd rather throw an ObjectDisposedException, but totally agree with the rest. <a href="http://msdn.microsoft.com/en-us/library/system.objectdisposedexception.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1062742/get-parameters-type-and-no-of-parameters-for-a-function-in-visual-studio-editor/1062747#1062747 Comment by Mudu on Get Parameters Type and no. of parameters for a function in Visual Studio Editor (C#) Mudu 2009-06-30T09:44:35Z 2009-06-30T09:44:35Z +1 ... tiny little trick to noticeably improve daily work with the IDE. http://stackoverflow.com/questions/1058650/whats-the-best-net-technical-thing-youve-learned-over-the-past-3-years/1058708#1058708 Comment by Mudu on What's the best .Net technical thing you've learned over the past 3 years? Mudu 2009-06-29T15:02:53Z 2009-06-29T15:02:53Z +1 Yeah, I'm working with the Design Patterns book too. I think this is the most important piece of my learning during the last few months. Didn't mention it because it's not .NET specific. http://stackoverflow.com/questions/1058650/whats-the-best-net-technical-thing-youve-learned-over-the-past-3-years/1058677#1058677 Comment by Mudu on What's the best .Net technical thing you've learned over the past 3 years? Mudu 2009-06-29T15:00:35Z 2009-06-29T15:00:35Z Mostly LINQ to Objects, there was no similarly simple elegant way for selecting, filtering and processing in-memory data before. At the moment I'm working (and learning) on Entity Framework with LINQ to Entities which is cool too. http://stackoverflow.com/questions/1043060/dataset-enumerator-and-findbyid-do-not-return-equal-datarow/1043155#1043155 Comment by Mudu on DataSet: Enumerator and FindById do not return equal DataRow Mudu 2009-06-25T11:50:03Z 2009-06-25T11:50:03Z Thank you! The type is string, but in fact there are GUIDs stored in the field. This is given, I cannot change. http://stackoverflow.com/questions/780834/how-does-gc-and-idispose-work-in-c/780849#780849 Comment by Mudu on How does GC and IDispose work in C#? Mudu 2009-04-23T09:06:09Z 2009-04-23T09:06:09Z As far as I know, finalizers are not guaranteed to be called. Usually they are, but there's no garanty. See <a href="http://tinyurl.com/cr4uo2" rel="nofollow">tinyurl.com/cr4uo2</a> (MSDN: Object.Finalize Method) under &quot;Remarks&quot; for details. http://stackoverflow.com/questions/659351/deleting-temporary-files-after-usage/659400#659400 Comment by Mudu on Deleting Temporary Files after usage Mudu 2009-03-19T15:31:47Z 2009-03-19T15:31:47Z I think you're right, Scott. But taking a look at my own profile's temp directory tells me the oldest files are just a few days old. May there be another &quot;secret&quot; feature of Windows keeping the temp directory clean...? I'll google this when I have some time. http://stackoverflow.com/questions/659351/deleting-temporary-files-after-usage/659368#659368 Comment by Mudu on Deleting Temporary Files after usage Mudu 2009-03-18T17:50:05Z 2009-03-18T17:50:05Z Yeah, atm I'm catching the Process' Exit-event to delete files that aren't needed anymore for sure... so, is it good practice to &quot;encourage&quot; the user to use the Windows Disk Cleanup tool? :) http://stackoverflow.com/questions/654536/outlook-navigation-bar-control-for-net-application/654593#654593 Comment by Mudu on Outlook navigation bar control for .NET application Mudu 2009-03-17T16:40:11Z 2009-03-17T16:40:11Z No, it's not free. I'm sorry, didn't read the question carefully enough. http://stackoverflow.com/questions/643723/c-and-net-3-5-how-to-launch-a-process-using-different-credentials-with-a-hid/643732#643732 Comment by Mudu on C# and .NET 3.5 - How to launch a process using different credentials, with a hidden window, and being able to capture standard output and exit code? Mudu 2009-03-13T17:25:14Z 2009-03-13T17:25:14Z OK, this issue might void my answer more or less... :)