User Jake Pearson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:29:46Zhttp://stackoverflow.com/feeds/user/632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804329/a-thanksgiving-thank-you9A Thanksgiving Thank You [closed]Jake Pearson2009-11-26T15:29:30Z2009-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#17833212Answer by Jake Pearson for Adding line break in C# Code behind pageJake Pearson2009-11-23T14:08:47Z2009-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#17637010Answer by Jake Pearson for How can I make a read-only ObservableCollection property?Jake Pearson2009-11-19T14:34:47Z2009-11-19T14:42:46Z<p>You could change the type of your property to be an IEnumerable:</p>
<pre><code>public IEnumerable<foo> 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<T> : IEnumerable<T>
{
T this[int i]
{
get;
}
}
public class IndexCollection<T> : ObservableCollection<T>, IIndexerCollection<T>
{
}
</code></pre>
http://stackoverflow.com/questions/1756163/wait-thread-question/1756214#17562141Answer by Jake Pearson for Wait thread questionJake Pearson2009-11-18T14:02:29Z2009-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#17161481Answer by Jake Pearson for Generics - Clarification RequiredJake Pearson2009-11-11T16:00:07Z2009-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<IEnumerable<int>>
</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-programatically1Enable ASP.NET in IIS6 ProgramaticallyJake Pearson2009-10-26T15:09:18Z2009-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#16757882Answer by Jake Pearson for High-performance Math library for .NET /C# and JavaJake Pearson2009-11-04T18:38:37Z2009-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-exception1Unexpected Cross Thread ExceptionJake Pearson2009-10-30T17:16:32Z2009-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-binding0WPF Dynamic BindingJake Pearson2009-11-02T18:24:15Z2009-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<KeyValuePair<string, string>> Fields
{
get
{
yield return new KeyValuePair<string, string>("Apple Label", "Apple");
yield return new KeyValuePair<string, string>("Orange Label", "Orange");
}
}
}
</code></pre>
<p>And here is the XAML:</p>
<pre><code><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">
<ListView ItemSource="{Binding Fields}">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Key}" />
**<TextBlock Text="{Binding Path={Binding Value}}" />**
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</UserControl>
</code></pre>
http://stackoverflow.com/questions/1662004/wpf-scrolling-listbox-in-an-expander/1662120#16621201Answer by Jake Pearson for WPF - Scrolling Listbox in an ExpanderJake Pearson2009-11-02T15:55:16Z2009-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><DockPanel>
<StackPanel>
<Expander Header="expander1" Width="150" HorizontalAlignment="Left">
<StackPanel>
<Label>Testing</Label>
<ScrollViewer Height="75">
<ListBox>
</ListBox>
</ScrollViewer>
</StackPanel>
</Expander>
<Expander Header="expander2">
</Expander>
</StackPanel>
</DockPanel>
</code></pre>
http://stackoverflow.com/questions/1650134/converting-reflected-property-to-string/1650146#16501462Answer by Jake Pearson for Converting Reflected Property to StringJake Pearson2009-10-30T14:31:18Z2009-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#16259141Answer by Jake Pearson for Enable ASP.NET in IIS6 ProgramaticallyJake Pearson2009-10-26T16:54:16Z2009-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#16253151Answer by Jake Pearson for Fixed Size to ListJake Pearson2009-10-26T14:55:37Z2009-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#16097220Answer by Jake Pearson for WPF Refresh Model on bindingJake Pearson2009-10-22T20:20:39Z2009-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#15950226Answer by Jake Pearson for How do I inherit from Dictionary?Jake Pearson2009-10-20T14:29:45Z2009-10-20T14:29:45Z<p>You were close, you just need to remove the type parameters from the constructors.</p>
<pre><code>class Foo<TKey,TValue> : Dictionary<TKey, TValue>
{
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#15948292Answer by Jake Pearson for Question about XmlSerializer in .NETJake Pearson2009-10-20T14:01:19Z2009-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<Item> Project
{
get;
set;
}
</code></pre>
http://stackoverflow.com/questions/1594375/is-there-a-better-way-to-implement-a-remove-method-for-a-queue/1594416#15944161Answer by Jake Pearson for Is there a better way to implement a Remove method for a Queue?Jake Pearson2009-10-20T12:56:00Z2009-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<T>
{
LinkedList<T> list = new LinkedList<T>();
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#15730441Answer by Jake Pearson for C# / Windows Forms - Display a PowerPoint slide-show without Office installed?Jake Pearson2009-10-15T15:15:09Z2009-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#15724620Answer by Jake Pearson for C# print a delegateJake Pearson2009-10-15T13:42:47Z2009-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-open0Wdproj won't openJake Pearson2009-10-09T20:37:40Z2009-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#15551981Answer by Jake Pearson for Wdproj won't openJake Pearson2009-10-12T15:21:33Z2009-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&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#15273271Answer by Jake Pearson for Nested Linq to created multiple class objectsJake Pearson2009-10-06T18:38:59Z2009-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<MenuItem> SelectDescendants(IEnumerable<XElement> 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#15219557Answer by Jake Pearson for Difference between DebuggerDisplayAttribute and DebuggerDisplayJake Pearson2009-10-05T19:32:12Z2009-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#14931170Answer by Jake Pearson for How to print a C# Windows form as a word doc would be printed?Jake Pearson2009-09-29T15:00:37Z2009-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#14873071Answer by Jake Pearson for WPF DataGrid binding problemJake Pearson2009-09-28T14:21:05Z2009-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-should0XmlSerializer is not acting like I think it shouldJake Pearson2009-09-21T18:21:43Z2009-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<int>
{
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><?xml version="1.0"?>
<ArrayOfInt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<int>5</int>
<int>6</int>
<int>7</int>
<int>8</int>
<int>9</int>
</ArrayOfInt>
</code></pre>
http://stackoverflow.com/questions/1120670/c-action-delegate-style-question2C# Action/Delegate Style QuestionJake Pearson2009-07-13T16:45:34Z2009-09-14T18:44:34Z
<p>What is considered better style for an event definition:</p>
<pre><code>public event Action<object, double> 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-line1Publish ClickOnce from command lineJake Pearson2009-09-03T20:30:15Z2009-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-wpf0Pass key press from win forms to wpfJake Pearson2009-09-08T19:21:10Z2009-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-scrollbars0MDX/SlimDX messes up WPF scrollbars?Jake Pearson2009-06-29T19:52:46Z2009-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><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">
<ListBox Margin="12" Name="listBox1" />
</UserControl>
</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#1783321Comment by Jake Pearson on Adding line break in C# Code behind pageJake Pearson2009-11-23T14:24:42Z2009-11-23T14:24:42ZGood point, fixed.http://stackoverflow.com/questions/1675735/high-performance-math-library-for-net-c-and-java/1675788#1675788Comment by Jake Pearson on High-performance Math library for .NET /C# and JavaJake Pearson2009-11-05T02:04:21Z2009-11-05T02:04:21ZOur 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#1675788Comment by Jake Pearson on High-performance Math library for .NET /C# and JavaJake Pearson2009-11-04T19:33:06Z2009-11-04T19:33:06ZI 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#1662895Comment by Jake Pearson on WPF Dynamic BindingJake Pearson2009-11-02T18:47:03Z2009-11-02T18:47:03ZThanks 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#1662120Comment by Jake Pearson on WPF - Scrolling Listbox in an ExpanderJake Pearson2009-11-02T16:15:19Z2009-11-02T16:15:19ZAlso, I imagine there is a better solution than what I just suggested.http://stackoverflow.com/questions/1662004/wpf-scrolling-listbox-in-an-expander/1662120#1662120Comment by Jake Pearson on WPF - Scrolling Listbox in an ExpanderJake Pearson2009-11-02T16:06:26Z2009-11-02T16:06:26ZYou 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#1651357Comment by Jake Pearson on Unexpected Cross Thread ExceptionJake Pearson2009-10-30T18:06:12Z2009-10-30T18:06:12ZI 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#1625412Comment by Jake Pearson on Enable ASP.NET in IIS6 ProgramaticallyJake Pearson2009-10-26T15:14:30Z2009-10-26T15:14:30ZThanks, I want to set it up from post install action I have.http://stackoverflow.com/questions/1609705/wpf-refresh-model-on-binding/1609722#1609722Comment by Jake Pearson on WPF Refresh Model on bindingJake Pearson2009-10-22T20:48:16Z2009-10-22T20:48:16ZIn that case, I don't have any really bright ideas, sorry :(http://stackoverflow.com/questions/1594997/how-do-i-inherit-from-dictionary/1595022#1595022Comment by Jake Pearson on How do I inherit from Dictionary?Jake Pearson2009-10-20T14:39:22Z2009-10-20T14:39:22Zpublic 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#1595022Comment by Jake Pearson on How do I inherit from Dictionary?Jake Pearson2009-10-20T14:33:33Z2009-10-20T14:33:33ZNope, 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#1594416Comment by Jake Pearson on Is there a better way to implement a Remove method for a Queue?Jake Pearson2009-10-20T13:02:17Z2009-10-20T13:02:17ZAlso, 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-openComment by Jake Pearson on Wdproj won't openJake Pearson2009-10-10T14:05:45Z2009-10-10T14:05:45ZI 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#1487190Comment by Jake Pearson on WPF DataGrid binding problemJake Pearson2009-10-07T11:49:27Z2009-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#1527327Comment by Jake Pearson on Nested Linq to created multiple class objectsJake Pearson2009-10-06T19:27:27Z2009-10-06T19:27:27ZHere you go, I coded it off the top of my head. The code above has now been tested. Hope it helps.