User Matt Hamilton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:13:01Z http://stackoverflow.com/feeds/user/615 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1853777/how-to-get-unique-entries-of-products-in-a-listorder-with-linq/1853807#1853807 6 Answer by Matt Hamilton for How to get unique entries of products in a List<Order> with LINQ Matt Hamilton 2009-12-05T23:12:40Z 2009-12-05T23:12:40Z <p>Untested, but how about:</p> <pre><code>var products = orders.SelectMany(o =&gt; o.OrderRows) .Select(r =&gt; r.ProductId) .Distinct(); </code></pre> http://stackoverflow.com/questions/1844553/need-a-deterministic-algorithm-to-generate-a-resource-domain-prefix-for-a-given-p/1844574#1844574 3 Answer by Matt Hamilton for Need a deterministic algorithm to generate a resource domain prefix for a given path in an evenly distributed fashion Matt Hamilton 2009-12-04T02:58:42Z 2009-12-04T02:58:42Z <p>This is a lot simpler than hashing the string (well, presumably it's already a hash anyway) and <em>seems</em> to get a better distribution:</p> <pre><code>Math.Abs(path.GetHashCode()) % resourceDomainCount </code></pre> http://stackoverflow.com/questions/1843359/approach-question-regarding-generics-in-c/1843430#1843430 3 Answer by Matt Hamilton for Approach question regarding Generics in C# Matt Hamilton 2009-12-03T22:26:25Z 2009-12-03T22:26:25Z <p>You can pull this off with reflection:</p> <pre><code>public static class XElementExtensions { public static T To&lt;T&gt;(this XElement el) { //var ctor = typeof(T).GetConstructor(new[] { typeof(XElement) }); //if (ctor == null) /* do something */ return (T)Activator.CreateInstance(typeof(T), new[] { el }); } } </code></pre> <p>You don't need the constructor check in there, but it would be necessary if you wanted to take special action, like returning <code>default(T)</code>.</p> <p>You would use this method like this:</p> <pre><code>User u = xmlElement.To&lt;User&gt;(); </code></pre> <p>I do wonder, though, what the benefit of this is over simply calling the constructor on your objects:</p> <pre><code>User u = new User(xmlElement); </code></pre> <p>Heck, it's one less character! :)</p> http://stackoverflow.com/questions/1739490/wpf-center-child-window-not-working-with-sizetocontent/1739524#1739524 0 Answer by Matt Hamilton for wpf center child window not working with sizetocontent Matt Hamilton 2009-11-16T00:48:38Z 2009-11-16T00:48:38Z <p>Your question is a bit ambiguous. On which window (the "parent" or the "child") are you setting SizeToContent and WindowStartupLocation?</p> <p>If I create a second window in my project and set its SizeToContent and WindowStartupLocation the way you describe, I get the desired results.</p> <p>The only thing I can think of that you may be forgetting is to actually tell the child window who its Owner is:</p> <pre><code>Window2 w = new Window2(); w.Owner = this; // "this" being the parent window w.ShowDialog(); </code></pre> <p>Or, more succinctly:</p> <pre><code>new Window2 { Owner = this }.ShowDialog(); </code></pre> http://stackoverflow.com/questions/1739216/how-to-disable-scrollviewer-in-listbox/1739298#1739298 1 Answer by Matt Hamilton for How to disable ScrollViewer in ListBox? Matt Hamilton 2009-11-15T23:35:52Z 2009-11-15T23:35:52Z <p>You can remove the ScrollViewer from a ListBox by changing its control template to something much simpler:</p> <pre><code>&lt;ListBox&gt; &lt;ListBox.Template&gt; &lt;ControlTemplate&gt; &lt;ItemsPresenter /&gt; &lt;/ControlTemplate&gt; &lt;/ListBox.Template&gt; ... &lt;/ListBox&gt; </code></pre> <p>However, I question the value of nesting ListBoxes. Remember that each ListBox is a Selector and has a concept of which item is "selected". Does it really make sense to have a selected item inside a selected item, inside a selected item? </p> <p>I would suggest changing the "inner" ListBoxes to simple ItemsControls so that the nested lists can't have selected items. That would make for a much simpler user experience. You may still need to retemplate the inner ItemsControls in the same way to remove the scrollbars, but at least the user won't get confused about which item is "selected".</p> http://stackoverflow.com/questions/1726304/icon-in-my-menu-shows-up-way-too-big-how-can-i-have-it-fit-in-the-little-square/1726320#1726320 3 Answer by Matt Hamilton for Icon in my Menu shows up way too big. How can I have it fit in the little square? Matt Hamilton 2009-11-13T00:11:20Z 2009-11-13T00:11:20Z <p>Set the size on your image:</p> <pre><code>&lt;Image Source="MenuImages/speechbubble.png" Stretch="Fill" Height="16" Width="16" /&gt; </code></pre> <p>WPF seems to pay attention to the DPI settings in images and scales them accordingly. If you omit the height and width on an image then it can be a little unpredictable.</p> <p>You can, of course, set those properties at the top level. Perhaps in the Menu's resources:</p> <pre><code>&lt;Menu&gt; &lt;Menu.Resources&gt; &lt;Style TargetType="Image"&gt; &lt;Setter Property="Height" Value="16" /&gt; &lt;Setter Property="Width" Value="16" /&gt; &lt;/Style&gt; &lt;/Menu.Resources&gt; &lt;/Menu&gt; </code></pre> http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix/1721201#1721201 1 Answer by Matt Hamilton for Using LINQ to find a common prefix? Matt Hamilton 2009-11-12T10:04:09Z 2009-11-12T10:04:09Z <p>This works, but I don't know about the performance of the Skip() on the second array:</p> <pre><code>x.TakeWhile((s, i) =&gt; y.Skip(i).FirstOrDefault() == s); </code></pre> <p>Edit: Oops - here's a slightly better approach:</p> <pre><code>x.TakeWhile((s, i) =&gt; y.ElementAt(i) == s); </code></pre> http://stackoverflow.com/questions/1711649/click-once-migrate-url/1711684#1711684 0 Answer by Matt Hamilton for Click Once Migrate URL Matt Hamilton 2009-11-10T22:25:54Z 2009-11-10T22:25:54Z <p>Go to the <code>Publish</code> page of your project options, and click on the <code>Updates</code> button. Change the <code>Update location</code> to the URI you want to publish to from now on. Publish one last version of your app to the original URI with those settings.</p> <p>Now change the <code>Publish Location</code> back on the <code>Publish</code> tab to the same URI as your "update location" and publish the new version to the new location.</p> <p>Any current users of your app will update to the next version from the original URI, and will now have an app that knows to look at the new location for the next version.</p> http://stackoverflow.com/questions/1699745/how-to-bind-a-textbox-to-plain-string-collection/1699832#1699832 0 Answer by Matt Hamilton for How to bind a TextBox to plain string collection Matt Hamilton 2009-11-09T08:52:59Z 2009-11-09T10:01:33Z <p>Ok, so here's your ListView. I'm going to add a name to it so I can reference it elsewhere in the XAML:</p> <pre><code>&lt;ListView x:Name=stringList ItemsSource="{Binding}" SelectionMode="Single" IsSynchronizedWithCurrentItem="True"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn Header="Data Item" Width="80" DisplayMemberBinding="{Binding}"/&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListView&gt; </code></pre> <p>Now in your TextBox over on the right you can bind directly to the ListView:</p> <pre><code>&lt;TextBox Text="{Binding SelectedItem,ElementName=stringList}" /&gt; </code></pre> <p>Since your ListView is bound directly to a list of strings, SelectedItem will be the string the currently-selected ListViewItem points to.</p> <p><strong>Update</strong></p> <p>Since you're not allowed to use ElementBinding, your best bet is to introduce a ViewModel class to sit between your list and your window. Define it like this:</p> <pre><code>public class StringListViewModel : INotifyPropertyChanged { // you'll have to implement INotifyPropertyChanged - I won't // do that here - do a quick search to learn how it works. public ObservableCollection&lt;String&gt; List { get; set; } private object _si; public object SelectedItem { get { return _si; } set { _si = value; OnPropertyChanged("SelectedItem"); } } } </code></pre> <p>Now set your window's DataContext to an instance of your ViewModel class instead of pointing it directly to the string list. Bind your ListView's ItemsSource and SelectedItem to it like this:</p> <pre><code>&lt;ListView ItemsSource="{Binding List}" SelectedItem="{Binding SelectedItem}" ... /&gt; </code></pre> <p>Now bind your TextBox to the SelectedItem of your ViewModel:</p> <pre><code>&lt;TextBox Text="{Binding SelectedItem}" /&gt; </code></pre> <p>Now your list sets the SelectedItem on the ViewModel whenever it changes, and thus your TextBox reflects that value. Hope that makes sense.</p> http://stackoverflow.com/questions/1699205/what-version-control-system-should-i-use-for-my-net-express-edition-projects/1699236#1699236 2 Answer by Matt Hamilton for What version control system should I use for my .Net Express Edition projects? Matt Hamilton 2009-11-09T05:30:21Z 2009-11-09T05:30:21Z <p>I've been using the <a href="http://sourcegear.com/faq.html#singleuser" rel="nofollow">free, single-user version of SourceGear Vault</a>, which works fine as a local repository. Obviously you still need to run the stand-alone client since Express doesn't support add-ins, but it does the job.</p> <p>Ideally the Express SKUs would <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=509150" rel="nofollow">support Codeplex natively</a>!</p> http://stackoverflow.com/questions/1698401/how-can-i-convert-a-list-of-domain-objects-to-viewmodels-on-the-controller-in-asp/1698427#1698427 5 Answer by Matt Hamilton for How can I convert a list of domain objects to viewmodels on the Controller in ASP.NET MVC Matt Hamilton 2009-11-08T23:59:24Z 2009-11-08T23:59:24Z <p>For simple objects you could just use Linq:</p> <pre><code>IList&lt;BallViewModel&gt; _balls = _ballsService.GetBalls(searchCriteria) .Select(b =&gt; new BallsViewModel { ID = b.ID, Name = b.Name, // etc }) .ToList(); </code></pre> <p>That can get pretty repetitive though, so you may want to give your BallViewModel class a constructor that accepts a Ball and does the work for you.</p> <p>Another approach is to use a library like <a href="http://automapper.codeplex.com" rel="nofollow">AutoMapper</a> to copy the properties (even the nested ones) from your domain object to your view model.</p> http://stackoverflow.com/questions/1698130/how-to-remove-an-object-from-a-list-collection/1698166#1698166 2 Answer by Matt Hamilton for How to remove an object from a list collection? Matt Hamilton 2009-11-08T22:35:28Z 2009-11-08T22:35:28Z <p>You could use the <a href="http://msdn.microsoft.com/en-us/library/wdka673a.aspx" rel="nofollow">RemovalAll</a> method:</p> <pre><code>myList.RemoveAll(i =&gt; i.Text == "two"); </code></pre> <p>Obviously this will get rid of <em>all</em> the items whose "Text" property is "two", but since you're using it in a ComboBox I'm assuming you'll only have one item for each "Text" value.</p> http://stackoverflow.com/questions/1685118/converting-csv-of-unknown-size-to-custom-object-with-c/1685141#1685141 1 Answer by Matt Hamilton for Converting CSV of unknown size to custom Object with C# Matt Hamilton 2009-11-06T03:01:51Z 2009-11-06T03:01:51Z <p>Ok, this is a little off the wall but it could work.</p> <p>You could load your "line" array up into a stack of strings, and pop each item off the stack as you assign them to the fields. This assumes, of course, that if any items are "missing" then they're missing from the end of the line.</p> <p>So here's the idea:</p> <pre><code>var fields = new Stack&lt;string&gt;(line); Person.Name = fields.PopOrDefault(); Person.Age = fields.PopOrDefault(); Person.Height = fields.PopOrDefault(); </code></pre> <p>I'm using a "PopOrDefault" extension method because obviously the "Pop" method on <code>Stack&lt;T&gt;</code> will throw an exception if there are no more items. Here's the implementation for that (it's pretty straight-forward):</p> <pre><code>static class StackExtensions { public static T PopOrDefault&lt;T&gt;(this Stack&lt;T&gt; stack) { if (stack.Count == 0) return default(T); return stack.Pop(); } } </code></pre> <p>So if any fields are missing, the property will get the default value for that type (in this case the default for string, which is null). You could even add a second parameter to "PopOrDefault" so you could specify your own default value.</p> http://stackoverflow.com/questions/1679476/extending-the-enumerable-class-in-c/1679504#1679504 2 Answer by Matt Hamilton for Extending the Enumerable class in c#? Matt Hamilton 2009-11-05T09:55:57Z 2009-11-05T09:55:57Z <p>You (like me) are looking for static extension methods:</p> <p><a href="http://madprops.org/blog/static-extension-methods/" rel="nofollow">http://madprops.org/blog/static-extension-methods/</a></p> <p>It's not possible in C#. The closest alternative is to define another static class with a similar name (LongEnumerable?) and add your static method to that.</p> http://stackoverflow.com/questions/1670773/wpf-templatebinding-with-custom-class/1670892#1670892 1 Answer by Matt Hamilton for WPF TemplateBinding with custom class Matt Hamilton 2009-11-03T23:46:21Z 2009-11-03T23:46:21Z <p>Breakpoints in dependency properties don't actually work - WPF bypasses the getter and setter once the binding is established. Have a look at this post from Bea Stollnitz for some tips for debugging bindings:</p> <p><a href="http://beacosta.com/blog/?p=52" rel="nofollow">How can I debug WPF bindings?</a></p> <p>What you're doing sounds reasonable. Are you certain the "CountryImagePage" is set correctly?</p> http://stackoverflow.com/questions/1660319/wpf-databind-dynamic-control-type/1660359#1660359 0 Answer by Matt Hamilton for WPF - Databind dynamic control type Matt Hamilton 2009-11-02T10:03:11Z 2009-11-02T10:03:11Z <p>I think you could use a ContentControl in this case:</p> <pre><code>&lt;ContentControl Content="{Binding Control}" /&gt; </code></pre> <p>That'll just render whatever you give it. If the Person's "Control" property is a WPF control, it'll render that.</p> http://stackoverflow.com/questions/1659998/observablecollection-listbox/1660008#1660008 1 Answer by Matt Hamilton for ObservableCollection -> Listbox Matt Hamilton 2009-11-02T08:20:16Z 2009-11-02T08:20:16Z <p>Because your "myList" is a field. WPF binding only works with properties. Change your list's declaration to:</p> <pre><code>private ObservableCollection&lt;string&gt; _myList = new ObservableCollection&lt;string&gt;(); public ObservableColelction&lt;string&gt; myList { get { return _myList; } } </code></pre> http://stackoverflow.com/questions/1659208/why-br-and-not-br/1659222#1659222 10 Answer by Matt Hamilton for why <br /> and not <br/> ? Matt Hamilton 2009-11-02T02:49:31Z 2009-11-02T02:49:31Z <p>If I recall correctly it's simply because some older browsers had problems with a self-closing tag without a space before the slash. I doubt it's an issue nowadays, but a lot of developers (myself included) got into the habit of including the space.</p> <p>Edit: Ah, here we are:</p> <p><a href="http://www.w3.org/TR/xhtml1/#guidelines" rel="nofollow">http://www.w3.org/TR/xhtml1/#guidelines</a></p> <blockquote> <p>Include a space before the trailing / and > of empty elements, e.g. <code>&lt;br /&gt;</code>, <code>&lt;hr /&gt;</code> and <code>&lt;img src="karen.jpg" alt="Karen" /&gt;</code>. Also, use the minimized tag syntax for empty elements, e.g. <code>&lt;br /&gt;</code>, as the alternative syntax <code>&lt;br&gt;&lt;/br&gt;</code> allowed by XML gives uncertain results in many existing user agents.</p> </blockquote> http://stackoverflow.com/questions/1656469/bound-value-for-ivalueconverter-resets-to-default/1656660#1656660 1 Answer by Matt Hamilton for Bound value for IValueConverter resets to default Matt Hamilton 2009-11-01T08:28:15Z 2009-11-01T08:28:15Z <p>I might be off-base here, but could it be because your enum defines "Three" as 3?</p> <p>Since you're using bitwise operators to check and uncheck the checkboxes, the "Three" value (0x11) will correspond to <em>both</em> the "One" and "Two" values (0x01 and 0x10 respectively).</p> <p>I know it seems counter-intuitive, but try changing your enum declaration to:</p> <pre><code>enum Numbers : int { One = 1, Two = 2, Three = 4, None = 0 }; </code></pre> http://stackoverflow.com/questions/1634830/counting-items-in-grouped-results-in-linq-to-sql/1634865#1634865 1 Answer by Matt Hamilton for counting items in grouped results in Linq to Sql Matt Hamilton 2009-10-28T02:24:57Z 2009-10-28T02:24:57Z <p>You can do some grouping in Linq like this:</p> <pre><code>var items = from r in rows group r by r.ID into g select new { Count = g.Count(), First = g.First() }; </code></pre> <p>... but that'll give you a collection of objects with a "Count" property (int) and a "First" property (of the same type as your rows).</p> <p>What you might want to do is select something that's shaped similarly to your row, except with a count property. One way to do that is field by field like this:</p> <pre><code>var items = from r in rows group r by r.ID into g let f = g.First() select new { f.ID, f.Name, f.Foo, f.Bar, // etc Count = g.Count() }; </code></pre> http://stackoverflow.com/questions/41319/checking-if-a-list-is-empty-with-linq 12 Checking if a list is empty with LINQ Matt Hamilton 2008-09-03T08:35:24Z 2009-10-26T04:37:06Z <p>What's the "best" (taking both speed and readability into account) way to determine if a list is empty? Even if the list is of type <code>IEnumerable&lt;T&gt;</code> and doesn't have a Count property.</p> <p>Right now I'm tossing up between this:</p> <pre><code>if (myList.Count() == 0) { ... } </code></pre> <p>and this:</p> <pre><code>if (!myList.Any()) { ... } </code></pre> <p>My guess is that the second option is faster, since it'll come back with a result as soon as it sees the first item, whereas the second option (for an IEnumerable) will need to visit every item to return the count.</p> <p>That being said, does the second option look as readable to you? Which would you prefer? Or can you think of a better way to test for an empty list?</p> <p><strong>Edit</strong> @lassevk's response seems to be the most logical, coupled with a bit of runtime checking to use a cached count if possible, like this:</p> <pre><code>public static bool IsEmpty&lt;T&gt;(this IEnumerable&lt;T&gt; list) { if (list is ICollection&lt;T&gt;) return ((ICollection&lt;T&gt;)list).Count == 0; return !list.Any(); } </code></pre> http://stackoverflow.com/questions/1622564/c-update-a-subitem-within-a-listview/1622585#1622585 2 Answer by Matt Hamilton for C# - Update a subitem within a listview Matt Hamilton 2009-10-26T00:18:26Z 2009-10-26T00:18:26Z <p>Ok, I'm going to assume Windows Forms.</p> <p>WinForms' ListViewItem class has a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.name.aspx" rel="nofollow">Name</a> property, which you can use to look up a specific item in a list. So as you populate the list, assign a unique value to the Name of each:</p> <pre><code>var item = new ListViewItem("Text"); item.Name = "foo"; // some unique id string listView1.Items.Add(item); </code></pre> <p>That way you can locate the item in the ListView later, using its <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listview.listviewitemcollection.find.aspx" rel="nofollow">Items.Find</a> method.</p> <pre><code>var fooItem = listView1.Items.Find("foo", false); </code></pre> http://stackoverflow.com/questions/1611064/retrieving-generic-argument-types/1611082#1611082 0 Answer by Matt Hamilton for Retrieving Generic Argument Types Matt Hamilton 2009-10-23T02:12:16Z 2009-10-23T02:12:16Z <p>I'd love to see a concrete example of what you're trying to do. Whenever you find yourself taking different actions depending on an object's type, it's a sign that you need to revisit your object model.</p> <p>Here's a really contrived example:</p> <pre><code>public void Talk(Animal a) { if (a is Dog) { Console.WriteLine("Woof!"); } else if (a is Cat) { Console.WriteLine("Meow!"); } } </code></pre> <p>You're far better off adding a virtual "Talk" method to Animal and overriding it in Dog and Cat, so that your method becomes:</p> <pre><code>public void Talk(Animal a) { a.Talk(); } </code></pre> <p>Can you refactor your code in such a way that the generic class doesn't need to know too much about its parameterized type?</p> http://stackoverflow.com/questions/1540183/how-can-i-build-a-string-from-a-collection-with-linq/1604960#1604960 1 Answer by Matt Hamilton for How can I build a string from a collection with Linq? Matt Hamilton 2009-10-22T04:05:12Z 2009-10-22T04:05:12Z <p>Note that .NET 4.0 includes a new <a href="http://msdn.microsoft.com/en-us/library/dd991828%28VS.100%29.aspx" rel="nofollow">String.Concat&lt;T&gt;()</a> static method which takes an <code>IEnumerable&lt;T&gt;</code> and calls ToString on each object in the list. Should come in handy!</p> http://stackoverflow.com/questions/1597563/new-to-programing-and-having-a-problem-with-listt/1597595#1597595 3 Answer by Matt Hamilton for New to programing and having a problem with List<T> Matt Hamilton 2009-10-20T22:05:55Z 2009-10-20T22:05:55Z <p>It looks like the particular API you're using reuses the same instance of CustomerClass for each customer it retrieves:</p> <pre><code>oCustomer.GetNext(); </code></pre> <p>So each time you add oCustomer to your list, you're adding the same instance, and the call to "GetNext" is changing the properties of that instance.</p> <p>I would suggest copying off the individual properties of oCustomer into a new instance of the class, and adding that to th list. Perhaps something like:</p> <pre><code>Custlist.Add(new CustomerClass { // obviously I don't know what the properties of // CustomerClass are, so humour me. Name = oCustomer.Name, Address = oCustomer.Address, Phone = oCustomer.Phone }); </code></pre> <p>That way you're adding a different customer instance to your list each time.</p> http://stackoverflow.com/questions/1513718/how-to-bind-window-background-to-a-themes-window-background-color/1546383#1546383 2 Answer by Matt Hamilton for How to bind Window background to a theme's Window background color? Matt Hamilton 2009-10-09T22:34:51Z 2009-10-20T21:07:20Z <p>Does applying a theme actually override the system brushes as I would expect? If so, you should be able to do this:</p> <pre><code>&lt;Window ... Background="{x:Static SystemColors.WindowBrush} ...&gt; </code></pre> <p><strong>Edit</strong></p> <p>As per Manga's comment, you'll probably want to use SystemColors.ControlBrush to achieve the desired effect, because WindowBrush on most systems is white. ControlBrush is the "off-white" colour you're seeing on Windows XP.</p> http://stackoverflow.com/questions/1570082/sql-how-would-i-return-the-result-set-from-multiple-executed-stored-procedures/1570097#1570097 1 Answer by Matt Hamilton for (SQL) How would I return the result set from multiple executed stored procedures? Matt Hamilton 2009-10-15T03:10:04Z 2009-10-15T03:27:11Z <p>Spread your INSERTs over several statements:</p> <pre><code>DECLARE @t TABLE (Value int); INSERT INTO @t EXEC sproc1; INSERT INTO @t EXEC sproc2; INSERT INTO @t EXEC sproc3; SELECT Value FROM @t; </code></pre> <p><strong>Edit</strong></p> <p>Wait ... are you saying that you already have a stored procedure which returns multiple resultsets? DataReaders can definitely handle that. Just use the <a href="http://msdn.microsoft.com/en-us/library/system.data.idatareader.nextresult.aspx" rel="nofollow">NextResult()</a> method to tell the reader that you now want data from the next resultset.</p> <p><strong>Edit 2</strong></p> <p>You asked if there's a way to roll all the results into one row. I can think of one way to do this but it's definitely not pretty, and I'm sure I'll be chastised by more SQL-savvy users in the comments, but here goes:</p> <pre><code>DECLARE @t TABLE (Id int identity, Value int); INSERT INTO @t (Value) EXEC sproc1; INSERT INTO @t (Value) EXEC sproc2; INSERT INTO @t (Value) EXEC sproc3; SELECT Value FROM @t PIVOT ( AVG(Value) FOR Id IN ([1], [2], [3]) ) AS t; </code></pre> <p>So that inserts the three values as separate rows, and then pivots on the Id values to create a single row with three columns.</p> http://stackoverflow.com/questions/1569234/asp-page-scraping-in-wpf/1569344#1569344 0 Answer by Matt Hamilton for ASP page scraping in wpf Matt Hamilton 2009-10-14T22:24:38Z 2009-10-14T22:24:38Z <p>You certainly shouldn't need to use a WebBrowser control. All you need to use is a <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx" rel="nofollow">System.Net.WebClient</a> class to pull down the page's HTML as a string. You can then parse that using a regular expression or something. Have a look at the example at the bottom of the WebClient MSDN page.</p> http://stackoverflow.com/questions/1565541/how-can-i-extract-the-url-of-a-web-reference-added-to-a-c-project/1565557#1565557 2 Answer by Matt Hamilton for How can I extract the URL of a Web Reference added to a C# project? Matt Hamilton 2009-10-14T10:49:57Z 2009-10-14T10:49:57Z <p>Web reference classes derive from <a href="http://msdn.microsoft.com/en-us/library/system.web.services.protocols.httpwebclientprotocol.aspx" rel="nofollow">HttpWebClientProtocol</a>, which has a Url property. So you can simply use:</p> <pre><code>var url = myClass.Url; </code></pre> http://stackoverflow.com/questions/1565075/receiving-commandparameter-value-in-mvvm/1565104#1565104 4 Answer by Matt Hamilton for Receiving CommandParameter Value in MVVM Matt Hamilton 2009-10-14T09:04:10Z 2009-10-14T09:04:10Z <p>Change your method definition:</p> <pre><code>public ObservableCollection&lt;PhonesViewModel&gt; DisplayNextPageRecords(object o) { // the method's parameter "o" now contains "Hello" PageNumber++; CreatePhones(); return this.AllPhones; } </code></pre> <p>See how when you create your RelayCommand, its "Execute" lambda takes a parameter? Pass that into your method:</p> <pre><code>_nextCommand = new RelayCommand(param =&gt; this.DisplayNextPageRecords(param)); </code></pre> http://stackoverflow.com/questions/1843451/why-does-null-null-evaluate-to-false-in-sql-server Comment by Matt Hamilton on Why does NULL = NULL evaluate to false in SQL server Matt Hamilton 2009-12-03T22:32:17Z 2009-12-03T22:32:17Z I don't have a sister, and nor does my friend. If &quot;NULL = NULL&quot; then we have a common sister, and are therefore related! :) http://stackoverflow.com/questions/1806607/trim-all-whitespace-in-an-array Comment by Matt Hamilton on Trim all whitespace in an array Matt Hamilton 2009-11-27T03:38:11Z 2009-11-27T03:38:11Z Can you clarify what you mean by &quot;trim&quot;? Do you want to remove whitespace from inside the string, or just from both ends? Do you want to trim successive whitespace characters back to one, or remove them altogether? http://stackoverflow.com/questions/1803145/how-to-close-account-on-stackoverflow-com Comment by Matt Hamilton on how to close account on stackoverflow.com Matt Hamilton 2009-11-26T11:31:24Z 2009-11-26T11:31:24Z It's not even a question! http://stackoverflow.com/questions/1760896/c-bind-textbox-to-selectedvalue Comment by Matt Hamilton on C#: Bind TextBox to SelectedValue Matt Hamilton 2009-11-19T04:41:20Z 2009-11-19T04:41:20Z Also: Silverlight, WinForms or WPF? http://stackoverflow.com/questions/426421/wpf-command-line/426436#426436 Comment by Matt Hamilton on WPF Command Line Matt Hamilton 2009-11-18T01:55:45Z 2009-11-18T01:55:45Z Certainly you can call Console.WriteLine, but the output won't appear on the console from which you launched the app. I'm not sure what &quot;Console&quot; is in the context of a WPF application. http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/138378#138378 Comment by Matt Hamilton on Most wanted feature for C# 4.0 ? Matt Hamilton 2009-11-17T05:33:15Z 2009-11-17T05:33:15Z @Kyralessa Extension properties would almost have to be read only. Setters would be very complicated to implement. http://stackoverflow.com/questions/1739216/how-to-disable-scrollviewer-in-listbox/1741589#1741589 Comment by Matt Hamilton on How to disable ScrollViewer in ListBox? Matt Hamilton 2009-11-16T19:09:44Z 2009-11-16T19:09:44Z Can you either move this into the body of your question, or post a new question? http://stackoverflow.com/questions/1740119/net-deployment-options-with-patch-management-automatic-updates Comment by Matt Hamilton on .NET Deployment Options with Patch management / Automatic updates Matt Hamilton 2009-11-16T04:55:54Z 2009-11-16T04:55:54Z Anything in particular about ClickOnce that you don't like? http://stackoverflow.com/questions/1739930/icons-on-titlebar Comment by Matt Hamilton on Icons on Titlebar Matt Hamilton 2009-11-16T03:49:23Z 2009-11-16T03:49:23Z More info about custom window chrome in WinForms here: <a href="http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app" rel="nofollow" title="custom titlebars chrome in a winforms app">stackoverflow.com/questions/42460/&hellip;</a> http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix/1721228#1721228 Comment by Matt Hamilton on Using LINQ to find a common prefix? Matt Hamilton 2009-11-12T10:15:18Z 2009-11-12T10:15:18Z Intersect will get all the common items, not the &quot;common prefix&quot; elements (ie the elements that match from the start of each list). http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix Comment by Matt Hamilton on Using LINQ to find a common prefix? Matt Hamilton 2009-11-12T10:14:30Z 2009-11-12T10:14:30Z +1 yeah Zip would do the trick nicely. http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/138378#138378 Comment by Matt Hamilton on Most wanted feature for C# 4.0 ? Matt Hamilton 2009-11-11T22:32:30Z 2009-11-11T22:32:30Z @Min to be fair, I'm actually stealing from an older language which I call &quot;English&quot; ;-) http://stackoverflow.com/questions/1711840/how-do-i-specify-close-existing-connections-in-sql-script/1711864#1711864 Comment by Matt Hamilton on How do I specify "close existing connections" in sql script Matt Hamilton 2009-11-11T00:25:48Z 2009-11-11T00:25:48Z Weird. Which Management Studio version? I'm on 2008 x64. http://stackoverflow.com/questions/1711840/how-do-i-specify-close-existing-connections-in-sql-script/1711864#1711864 Comment by Matt Hamilton on How do I specify "close existing connections" in sql script Matt Hamilton 2009-11-10T23:03:16Z 2009-11-10T23:03:16Z I was going to try to answer this question by doing exactly what you describe (scripting the &quot;delete database&quot; dialog) but it <b>doesn't</b> add the ALTER DATABASE line to the script if you check the &quot;close existing connections&quot; checkbox. http://stackoverflow.com/questions/1711649/click-once-migrate-url/1711684#1711684 Comment by Matt Hamilton on Click Once Migrate URL Matt Hamilton 2009-11-10T22:30:04Z 2009-11-10T22:30:04Z You're right - it looks like the question is a duplicate. I'll vote to close it.