User Jake Pearson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:29:46Z http://stackoverflow.com/feeds/user/632 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804329/a-thanksgiving-thank-you 9 A Thanksgiving Thank You [closed] Jake Pearson 2009-11-26T15:29:30Z 2009-11-26T15:31:30Z <p>My family has a tradition to write notes on Thanksgiving to people who we are thankful for. This year I am thankful for Stackoverflow. Thanks, you guys are rad!</p> <p>(I totally understand if this message gets closed!)</p> http://stackoverflow.com/questions/1783310/adding-line-break-in-c-code-behind-page/1783321#1783321 2 Answer by Jake Pearson for Adding line break in C# Code behind page Jake Pearson 2009-11-23T14:08:47Z 2009-11-23T15:14:48Z <p>C# doesn't have an explicit line break character. You statements end with a semicolon so you can span your statements over many lines. These are both the same:</p> <pre><code>public string GenerateString() { return "abc" + "def"; } public string GenerateString() { return "abc" + "def"; } </code></pre> http://stackoverflow.com/questions/1763696/how-can-i-make-a-read-only-observablecollection-property/1763701#1763701 0 Answer by Jake Pearson for How can I make a read-only ObservableCollection property? Jake Pearson 2009-11-19T14:34:47Z 2009-11-19T14:42:46Z <p>You could change the type of your property to be an IEnumerable:</p> <pre><code>public IEnumerable&lt;foo&gt; CollectionOfFoo { get { return _CollectionOfFoo; } } </code></pre> <p>I don't believe there is a standard interface that exposes an indexer. If you need it you could write an interface and extend ObservableCollection to implement it:</p> <pre><code>public interface IIndexerCollection&lt;T&gt; : IEnumerable&lt;T&gt; { T this[int i] { get; } } public class IndexCollection&lt;T&gt; : ObservableCollection&lt;T&gt;, IIndexerCollection&lt;T&gt; { } </code></pre> http://stackoverflow.com/questions/1756163/wait-thread-question/1756214#1756214 1 Answer by Jake Pearson for Wait thread question Jake Pearson 2009-11-18T14:02:29Z 2009-11-18T14:02:29Z <p>Calling Invoke will block both the GUI thread and your worker thread so there won't be any performance improvement over code without a worker thread.</p> http://stackoverflow.com/questions/1716132/generics-clarification-required/1716148#1716148 1 Answer by Jake Pearson for Generics - Clarification Required Jake Pearson 2009-11-11T16:00:07Z 2009-11-11T16:00:07Z <p>The above example will not compile. But you can embed Generic types within one another with something like this:</p> <pre><code>IEnumerable&lt;IEnumerable&lt;int&gt;&gt; </code></pre> <p>Which would be an enumerable of an enumerable of ints (which would act as a jagged 2 dimensional array).</p> http://stackoverflow.com/questions/1625397/enable-asp-net-in-iis6-programatically 1 Enable ASP.NET in IIS6 Programatically Jake Pearson 2009-10-26T15:09:18Z 2009-11-09T21:58:22Z <p>Is there a way to enable the ASP.NET Web Service Extension in IIS6 via C#? I'm trying to simplify a website setup program for people who haven't used IIS before.</p> http://stackoverflow.com/questions/1675735/high-performance-math-library-for-net-c-and-java/1675788#1675788 2 Answer by Jake Pearson for High-performance Math library for .NET /C# and Java Jake Pearson 2009-11-04T18:38:37Z 2009-11-04T18:38:37Z <p>I can help with C#:</p> <p>Here is another SO question that discusses <a href="http://stackoverflow.com/questions/1387430/recommended-math-library-for-c-net">various C# math libraries</a></p> <p>And you can take a look at <a href="http://msdn.microsoft.com/en-us/library/dd460688%28VS.100%29.aspx" rel="nofollow">PLINQ</a> for C# multithreading help.</p> http://stackoverflow.com/questions/1651156/unexpected-cross-thread-exception 1 Unexpected Cross Thread Exception Jake Pearson 2009-10-30T17:16:32Z 2009-11-04T17:36:39Z <p>The following method is launched from the constructor of UserControl. A cross thread exception is thrown, but I can't tell why:</p> <pre><code> public override void Populate() { base.Populate (); LoadEditableList(IEditableList); ThreadStart fix = null; fix = delegate() { if (InvokeRequired) { Invoke(fix); } else { buttonAdd_Click(null, null); } }; var thread = new Thread(fix); thread.Start(); } </code></pre> <p>The buttonAdd_Click method adds an item to a ListView. Strangely, I avoid this error if I add a breakpoint to the <code>if (InvokeRequired)</code> line. This is very similar to a pattern I have written dozens of times, I suspect I am missing something due to new baby no sleep syndrome.</p> http://stackoverflow.com/questions/1662847/wpf-dynamic-binding 0 WPF Dynamic Binding Jake Pearson 2009-11-02T18:24:15Z 2009-11-03T01:57:29Z <p>Today, I was working on a WPF UserControl to display the current value of a few variables. I was wondering if there would be a way to make a super simple property grid in WPF. The problem is on the starred line of the XAML below. <strong>How would I bind a string to a property with an ItemTemplate like I have setup below?</strong> To be more clear can I embed bindings inside of one another <code>{Binding Path={Binding Value}}</code>.</p> <p>Here is the class:</p> <pre><code>public class Food { public string Apple { get; set; } public string Orange { get; set; } public IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; Fields { get { yield return new KeyValuePair&lt;string, string&gt;("Apple Label", "Apple"); yield return new KeyValuePair&lt;string, string&gt;("Orange Label", "Orange"); } } } </code></pre> <p>And here is the XAML:</p> <pre><code>&lt;UserControl x:Class="MAAD.Plugins.FRACTIL.Simulation.SimulationStateView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="331" Width="553"&gt; &lt;ListView ItemSource="{Binding Fields}"&gt; &lt;ListView.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="{Binding Key}" /&gt; **&lt;TextBlock Text="{Binding Path={Binding Value}}" /&gt;** &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListView.ItemTemplate&gt; &lt;/ListView&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/1662004/wpf-scrolling-listbox-in-an-expander/1662120#1662120 1 Answer by Jake Pearson for WPF - Scrolling Listbox in an Expander Jake Pearson 2009-11-02T15:55:16Z 2009-11-02T15:55:16Z <p>You need to set the Height property of ScrollViewer otherwise it will be the same size as it's child. Here is some updated XAML:</p> <pre><code>&lt;DockPanel&gt; &lt;StackPanel&gt; &lt;Expander Header="expander1" Width="150" HorizontalAlignment="Left"&gt; &lt;StackPanel&gt; &lt;Label&gt;Testing&lt;/Label&gt; &lt;ScrollViewer Height="75"&gt; &lt;ListBox&gt; &lt;/ListBox&gt; &lt;/ScrollViewer&gt; &lt;/StackPanel&gt; &lt;/Expander&gt; &lt;Expander Header="expander2"&gt; &lt;/Expander&gt; &lt;/StackPanel&gt; &lt;/DockPanel&gt; </code></pre> http://stackoverflow.com/questions/1650134/converting-reflected-property-to-string/1650146#1650146 2 Answer by Jake Pearson for Converting Reflected Property to String Jake Pearson 2009-10-30T14:31:18Z 2009-10-30T14:31:18Z <p>You can't cast every object to a string, but every object has a ToString method. So you can change your code to:</p> <pre><code>string value = typeof(T).GetProperty(ValueField).GetValue(data, null).ToString(); </code></pre> http://stackoverflow.com/questions/1625397/enable-asp-net-in-iis6-programatically/1625914#1625914 1 Answer by Jake Pearson for Enable ASP.NET in IIS6 Programatically Jake Pearson 2009-10-26T16:54:16Z 2009-10-26T16:54:16Z <p>Looking around all the examples of this are written in vbscript. So I cheated and came up with this function:</p> <pre><code>static void EnableASPNET() { var file = "wmi.vbs"; using (var writer = new StreamWriter(file)) { writer.WriteLine("Set webServiceObject = GetObject(\"IIS://localhost/W3SVC\")"); writer.WriteLine("webServiceObject.EnableWebServiceExtension \"ASP.NET v2.0.50727\""); writer.WriteLine("webServiceObject.SetInfo"); } var process = Process.Start("cscript", file); process.WaitForExit(); File.Delete(file); } </code></pre> http://stackoverflow.com/questions/1625302/fixed-size-to-list/1625315#1625315 1 Answer by Jake Pearson for Fixed Size to List Jake Pearson 2009-10-26T14:55:37Z 2009-10-26T14:55:37Z <p>When you call list.Add, you are trying to insert an item to the end of you array. Arrays are a fixed size collection so you can't do an Add. Instead you will have to assign the entries via the indexer:</p> <pre><code>list[0] = "a"; list[1] = "b"; list[2] = "c"; </code></pre> http://stackoverflow.com/questions/1609705/wpf-refresh-model-on-binding/1609722#1609722 0 Answer by Jake Pearson for WPF Refresh Model on binding Jake Pearson 2009-10-22T20:20:39Z 2009-10-22T20:20:39Z <p>You could add a Selected property to your ViewModel that gets set when the object becomes selected. When Selected turns to true, you could hit up your database.</p> http://stackoverflow.com/questions/1594997/how-do-i-inherit-from-dictionary/1595022#1595022 6 Answer by Jake Pearson for How do I inherit from Dictionary? Jake Pearson 2009-10-20T14:29:45Z 2009-10-20T14:29:45Z <p>You were close, you just need to remove the type parameters from the constructors.</p> <pre><code>class Foo&lt;TKey,TValue&gt; : Dictionary&lt;TKey, TValue&gt; { Foo():base(){} Foo(int capacity):base(capacity){} } </code></pre> <p>To override a method you can use the override keyword.</p> http://stackoverflow.com/questions/1594792/question-about-xmlserializer-in-net/1594829#1594829 2 Answer by Jake Pearson for Question about XmlSerializer in .NET Jake Pearson 2009-10-20T14:01:19Z 2009-10-20T14:01:19Z <p>I believe you need to add some attributes like this to your Project property:</p> <pre><code>[XmlArray] [XmlArrayItem(ElementName="ProjectItem", Type=typeof(ProjectItem))] [XmlArrayItem(ElementName="Folder", Type=typeof(Folder))] public List&lt;Item&gt; Project { get; set; } </code></pre> http://stackoverflow.com/questions/1594375/is-there-a-better-way-to-implement-a-remove-method-for-a-queue/1594416#1594416 1 Answer by Jake Pearson for Is there a better way to implement a Remove method for a Queue? Jake Pearson 2009-10-20T12:56:00Z 2009-10-20T12:56:00Z <p>I think switching over to a new custom class that had a LinkedList internally would only take you a few minutes and would be much more performant than what you have now.</p> <pre><code>public class SpecialQueue&lt;T&gt; { LinkedList&lt;T&gt; list = new LinkedList&lt;T&gt;(); public void Enqueue(T t) { list.AddLast(t); } public T Dequeue() { var result = list.First.Value; list.RemoveFirst(); return result; } public T Peek() { return list.First.Value; } public bool Remove(T t) { return list.Remove(t); } } </code></pre> http://stackoverflow.com/questions/1572995/c-windows-forms-display-a-powerpoint-slide-show-without-office-installed/1573044#1573044 1 Answer by Jake Pearson for C# / Windows Forms - Display a PowerPoint slide-show without Office installed? Jake Pearson 2009-10-15T15:15:09Z 2009-10-15T15:15:09Z <p>I believe you can accomplish this with <a href="http://www.aspose.com/categories/.net-components/aspose.slides-for-.net/default.aspx" rel="nofollow">Aspose.Slides</a>. It can open up an PPT file you have, then I think you could save each sheet to a image. Finally, you could show the images in your app.</p> http://stackoverflow.com/questions/1572392/c-print-a-delegate/1572462#1572462 0 Answer by Jake Pearson for C# print a delegate Jake Pearson 2009-10-15T13:42:47Z 2009-10-15T13:42:47Z <p>I don't believe there is a simple way to accomplish this. Reflector or some other decompiler can show you the source of your program. As far as I know, the PDB only maps op codes to lines in the source of a program. It does not include the source.</p> <p>I have used the <strong>StackTrace</strong> class along with the PDB and the source to be able to find out the source of an exception.</p> http://stackoverflow.com/questions/1545940/wdproj-wont-open 0 Wdproj won't open Jake Pearson 2009-10-09T20:37:40Z 2009-10-12T15:21:33Z <p>I just switched to Windows7 Professional 64 bit from Vista Ultimate 32 bit. I reinstalled all Visual Studio 2008 Professional and applied SP1. All is working well except I can't open a solution that contains a <strong>wdproj</strong> file. I found this <a href="http://www.dotnet247.com/247reference/msgs/70/350939.aspx" rel="nofollow">link</a> (and a bunch of others scraped from Microsoft) with a similar problem. They suggested using calling "devenv.exe /setup", "devenv.exe /InstallVSTemplates" and "devenv.exe /ResetSkipPkgs". Any idea what I should do?</p> <p><img src="http://img514.imageshack.us/img514/1223/erroryu.png" alt="alt text" /></p> http://stackoverflow.com/questions/1545940/wdproj-wont-open/1555198#1555198 1 Answer by Jake Pearson for Wdproj won't open Jake Pearson 2009-10-12T15:21:33Z 2009-10-12T15:21:33Z <p>It turns out I needed to install <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&amp;displaylang=en" rel="nofollow">this msi</a>. One of my coworkers reminded me.</p> http://stackoverflow.com/questions/1527148/nested-linq-to-created-multiple-class-objects/1527327#1527327 1 Answer by Jake Pearson for Nested Linq to created multiple class objects Jake Pearson 2009-10-06T18:38:59Z 2009-10-06T19:26:52Z <p>I think you could solve this with a bit of recursion. You could probably have just MenuItem instead of both classes. They are basically same. Then, if you create a SelectDecendants method, it would keep calling itself to get the children of the current node. Something like this:</p> <pre><code>class Program { static void Main(string[] args) { var doc = XDocument.Load("input.xml"); var menuItems = SelectDescendants(doc.Elements("MenuItems").Elements()); } public static List&lt;MenuItem&gt; SelectDescendants(IEnumerable&lt;XElement&gt; menuItems) { return (from menuItem in menuItems select new MenuItem { Id = menuItem.Attribute("Id").Value, Description = menuItem.Attribute("Description").Value, LinkText = menuItem.Attribute("LinkText").Value, Url = menuItem.Attribute("Url").Value, Target = menuItem.Attribute("Description").Value, SubMenuItems = SelectDescendants(menuItem.Elements()).ToList() }).ToList(); } } </code></pre> http://stackoverflow.com/questions/1521946/difference-between-debuggerdisplayattribute-and-debuggerdisplay/1521955#1521955 7 Answer by Jake Pearson for Difference between DebuggerDisplayAttribute and DebuggerDisplay Jake Pearson 2009-10-05T19:32:12Z 2009-10-05T19:32:12Z <p>They are the same, the C# compiler will be able to resolve the type whether you write Attribute at the end or not.</p> http://stackoverflow.com/questions/1493087/how-to-print-a-c-windows-form-as-a-word-doc-would-be-printed/1493117#1493117 0 Answer by Jake Pearson for How to print a C# Windows form as a word doc would be printed? Jake Pearson 2009-09-29T15:00:37Z 2009-09-29T15:00:37Z <p>Here is an article on <a href="http://www.codeproject.com/KB/printing/printawinformsusercontrol.aspx" rel="nofollow">CodeProject</a> that should walk you through what you want.</p> http://stackoverflow.com/questions/1487162/wpf-datagrid-binding-problem/1487307#1487307 1 Answer by Jake Pearson for WPF DataGrid binding problem Jake Pearson 2009-09-28T14:21:05Z 2009-09-28T14:21:05Z <p>I have almost the exact same code as you, I just create the binding in a slightly different way:</p> <pre><code>void Add(ColumnViewModel columnViewModel) { var column = new DataGridTextColumn { Header = columnViewModel.Name, Binding = new Binding("[" + columnViewModel.Name + "]") }; dataGrid.Columns.Add(column); } </code></pre> http://stackoverflow.com/questions/1456022/xmlserializer-is-not-acting-like-i-think-it-should 0 XmlSerializer is not acting like I think it should Jake Pearson 2009-09-21T18:21:43Z 2009-09-21T18:44:50Z <p>I've used XmlSerializer for a bunch of years without any problem. I started a new project and the class I made extended List. When I went to serialize the data, I lost the properties I added to my class. Obviously, I can fix this by changing around my class so it doesn't extent List anymore. I really was just wondering why XmlSerializer ignores the properties on the List.</p> <pre><code>var data = new Data { Number = 3 }; data.AddRange(Enumerable.Range(5, 5)); var serializer = new XmlSerializer(typeof(Data)); var memoryStream = new MemoryStream(); serializer.Serialize(memoryStream, data); memoryStream.Position = 0; var dataSerialized = new StreamReader(memoryStream).ReadToEnd(); public class Data : List&lt;int&gt; { public int Number { get; set; } } </code></pre> <p>After the code snippet above dataSerialized looks like this (its missing the 'Number' property):</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;ArrayOfInt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;int&gt;5&lt;/int&gt; &lt;int&gt;6&lt;/int&gt; &lt;int&gt;7&lt;/int&gt; &lt;int&gt;8&lt;/int&gt; &lt;int&gt;9&lt;/int&gt; &lt;/ArrayOfInt&gt; </code></pre> http://stackoverflow.com/questions/1120670/c-action-delegate-style-question 2 C# Action/Delegate Style Question Jake Pearson 2009-07-13T16:45:34Z 2009-09-14T18:44:34Z <p>What is considered better style for an event definition:</p> <pre><code>public event Action&lt;object, double&gt; OnNumberChanged; </code></pre> <p>or</p> <pre><code>public delegate void DNumberChanged(object sender, double number); public event DNumberChanged OnNumberChanged; </code></pre> <p>The first takes less typing, but the delegate one gives names to the parameters. As I type this, I think number 2 is the winner, but I could be wrong.</p> <p>Edit: Number 3 is the winner. Read below.</p> http://stackoverflow.com/questions/1375764/publish-clickonce-from-command-line 1 Publish ClickOnce from command line Jake Pearson 2009-09-03T20:30:15Z 2009-09-10T18:11:23Z <p>Is there a way to have VS.NET 2008 execute the "Publish Now" button from the command line? I've seen posts that suggest to use <strong>msbuild /target:publish</strong> to call it. That is ok, but msbuild doesn't increment the revision number. I'm hoping for something like:</p> <pre><code>devenv mysolution.sln /publish </code></pre> http://stackoverflow.com/questions/1395828/pass-key-press-from-win-forms-to-wpf 0 Pass key press from win forms to wpf Jake Pearson 2009-09-08T19:21:10Z 2009-09-09T07:20:15Z <p>I have a windows forms Form that has a menu bar that grabs Ctrl-C. Inside the form's copy handler is a switch statement calls the correct copy method depending on what kind of control is selected.</p> <p>I have now added a WPF UserControl as one of the child controls. In the UserControl, is a TextBox. I would like to have Ctrl-C activate the TextBox's Copy command. What is the easiest way to launch that command? Or maybe there is an easy way to fire a keypress event on the usercontrol?</p> http://stackoverflow.com/questions/1060158/mdx-slimdx-messes-up-wpf-scrollbars 0 MDX/SlimDX messes up WPF scrollbars? Jake Pearson 2009-06-29T19:52:46Z 2009-08-31T11:00:50Z <p>I have a very simple WPF user control that is mixed in with a windows forms app. It has a list box that renders its scroll bar without <strong>the thumb</strong> (image below). I narrowed it down to a plugin in my app that uses Managed DirectX (MDX). If I remove the plugin, the scroll bar is just fine. I know MDX is deprecated, but I don't think today is the day to consider an upgrade. Has anyone ever seen their <strong>scroll bar get messed up</strong>, or has any idea what I should do?</p> <p>And I should add, that this control also lives in a plugin. There is no way for the 2 plugins to reference each other.</p> <p><img src="http://i41.tinypic.com/3zxcg.png" alt="alt text" /></p> <pre><code>&lt;UserControl x:Class="MAAD.Plugins.Experiment.Visual.TestEditor" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="403" Width="377"&gt; &lt;ListBox Margin="12" Name="listBox1" /&gt; &lt;/UserControl&gt; </code></pre> <p>Update: You can read about the solution below.</p> http://stackoverflow.com/questions/1783310/adding-line-break-in-c-code-behind-page/1783321#1783321 Comment by Jake Pearson on Adding line break in C# Code behind page Jake Pearson 2009-11-23T14:24:42Z 2009-11-23T14:24:42Z Good point, fixed. http://stackoverflow.com/questions/1675735/high-performance-math-library-for-net-c-and-java/1675788#1675788 Comment by Jake Pearson on High-performance Math library for .NET /C# and Java Jake Pearson 2009-11-05T02:04:21Z 2009-11-05T02:04:21Z Our previous engine was written in C, but the simulation scripting engine was interpreted. Now the simulation is compiled C#, so the performance is about 1000x over the old system. I suspect carefully tuned C would beat C# for a lot of very heavy math operations. http://stackoverflow.com/questions/1675735/high-performance-math-library-for-net-c-and-java/1675788#1675788 Comment by Jake Pearson on High-performance Math library for .NET /C# and Java Jake Pearson 2009-11-04T19:33:06Z 2009-11-04T19:33:06Z I write a discrete event simulation application called Micro Saint Sharp. We switched from C to C# 7 years ago. The performance is great. I don't use any external math libraries. The only special math class we use is for calculating various random distributions, performance of it has never been a simulation bottleneck. http://stackoverflow.com/questions/1662847/wpf-dynamic-binding/1662895#1662895 Comment by Jake Pearson on WPF Dynamic Binding Jake Pearson 2009-11-02T18:47:03Z 2009-11-02T18:47:03Z Thanks for the post, but I'm not looking to bind to Value but to the property with the name that Value holds. From the above example, one of the pairs would bind to the value of the Orange property and the other to the Apple property. http://stackoverflow.com/questions/1662004/wpf-scrolling-listbox-in-an-expander/1662120#1662120 Comment by Jake Pearson on WPF - Scrolling Listbox in an Expander Jake Pearson 2009-11-02T16:15:19Z 2009-11-02T16:15:19Z Also, I imagine there is a better solution than what I just suggested. http://stackoverflow.com/questions/1662004/wpf-scrolling-listbox-in-an-expander/1662120#1662120 Comment by Jake Pearson on WPF - Scrolling Listbox in an Expander Jake Pearson 2009-11-02T16:06:26Z 2009-11-02T16:06:26Z You could do a binding with syntax like this: {Binding ElementName=Window1, Path=Height} but that would lead to too large of a value. I think instead you will need to a property to your window that is Height - SomeOffset. http://stackoverflow.com/questions/1651156/unexpected-cross-thread-exception/1651357#1651357 Comment by Jake Pearson on Unexpected Cross Thread Exception Jake Pearson 2009-10-30T18:06:12Z 2009-10-30T18:06:12Z I think you are correct. I fixed the issue, by tying the populate method to the VisibleChanged event. Thanks. http://stackoverflow.com/questions/1625397/enable-asp-net-in-iis6-programatically/1625412#1625412 Comment by Jake Pearson on Enable ASP.NET in IIS6 Programatically Jake Pearson 2009-10-26T15:14:30Z 2009-10-26T15:14:30Z Thanks, I want to set it up from post install action I have. http://stackoverflow.com/questions/1609705/wpf-refresh-model-on-binding/1609722#1609722 Comment by Jake Pearson on WPF Refresh Model on binding Jake Pearson 2009-10-22T20:48:16Z 2009-10-22T20:48:16Z In that case, I don't have any really bright ideas, sorry :( http://stackoverflow.com/questions/1594997/how-do-i-inherit-from-dictionary/1595022#1595022 Comment by Jake Pearson on How do I inherit from Dictionary? Jake Pearson 2009-10-20T14:39:22Z 2009-10-20T14:39:22Z public has to be explicitly defined in C#, without it everything defaults to private. http://stackoverflow.com/questions/1594997/how-do-i-inherit-from-dictionary/1595022#1595022 Comment by Jake Pearson on How do I inherit from Dictionary? Jake Pearson 2009-10-20T14:33:33Z 2009-10-20T14:33:33Z Nope, TKey and TValue are now defined as part of the class. You don't need to redefine them in each method. http://stackoverflow.com/questions/1594375/is-there-a-better-way-to-implement-a-remove-method-for-a-queue/1594416#1594416 Comment by Jake Pearson on Is there a better way to implement a Remove method for a Queue? Jake Pearson 2009-10-20T13:02:17Z 2009-10-20T13:02:17Z Also, you can speed up your existing method by enqueueing as you dequeue instead of saving your queue to a temporary list. http://stackoverflow.com/questions/1545940/wdproj-wont-open Comment by Jake Pearson on Wdproj won't open Jake Pearson 2009-10-10T14:05:45Z 2009-10-10T14:05:45Z I tried reinstalling and checking all the boxes, the only one I hadn't checked the previous time was one a couple of layers under C++. Should I install Web Developer Express? http://stackoverflow.com/questions/1487162/wpf-datagrid-binding-problem/1487190#1487190 Comment by Jake Pearson on WPF DataGrid binding problem Jake Pearson 2009-10-07T11:49:27Z 2009-10-07T11:49:27Z @Partial You're right. I was speaking to the Columns property of datagrid, it has no setter so you can't bind your own collection of columns to it. http://stackoverflow.com/questions/1527148/nested-linq-to-created-multiple-class-objects/1527327#1527327 Comment by Jake Pearson on Nested Linq to created multiple class objects Jake Pearson 2009-10-06T19:27:27Z 2009-10-06T19:27:27Z Here you go, I coded it off the top of my head. The code above has now been tested. Hope it helps.