User Anthony Potts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:38:12Z http://stackoverflow.com/feeds/user/22777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1923325/why-is-my-net-app-contacting-verisign/1923343#1923343 0 Answer by Anthony Potts for Why is my .Net app contacting Verisign? Anthony Potts 2009-12-17T17:34:38Z 2009-12-17T17:34:38Z <p>Are these paid third party dlls which are possibly doing some sort of usage authentication?</p> http://stackoverflow.com/questions/889505/child-class-not-showing-inherited-properties-in-soap-document-asmx-web-service 0 Child class not showing inherited properties in SOAP document (ASMX web service) Anthony Potts 2009-05-20T18:30:23Z 2009-12-16T14:50:18Z <p>I am writing a .NET webservice (VB.NET). One of the methods DisplayChild() returns an object of type Child. Child is defined:</p> <pre><code>&lt;Serializable()&gt; _ Public Class Child Inherits BaseClass Property NotInInheritedProperties() as Object ... End Property End Class </code></pre> <p>and the BaseClass looks something like:</p> <pre><code>&lt;Serializable()&gt; _ Public MustInherit Class BaseClass Property BaseProperty() as Object ... End Property End Class </code></pre> <p>However, in the SOAP definition that shows the return from the DisplayChild() the only property shown in the output is the NotInInheritedProperties property. My question then, is how do I get the properties in the BaseClass to show up in the SOAP document? Originally I didn't have the Serializable attribute on the BaseClass thinking that was the problem. However, even after changing that it still didn't work.</p> http://stackoverflow.com/questions/1909635/a-b-test-statistics/1909670#1909670 0 Answer by Anthony Potts for A/B Test statistics Anthony Potts 2009-12-15T19:12:26Z 2009-12-15T19:12:26Z <p>Not sure that this is a programming question, but when I was a Mathematics graduate student I took some Statistics courses. The general consensus was that the best test is the one that proves whatever point you are trying to make. </p> http://stackoverflow.com/questions/1907772/asp-net-mvc-unknown-runtime-error-in-ie-nested-forms/1907873#1907873 1 Answer by Anthony Potts for ASP .NET MVC, Unknown runtime error in IE (nested forms) Anthony Potts 2009-12-15T14:36:57Z 2009-12-15T14:36:57Z <p>I prefer, in instances like this, to make a div which looks like a form (or even a dialog box a la DHTML) and wire up an ajax post of these "form" elements to an onclick event of the button. It's obviously a lot more work, but it's gotten me out of a lot of jams.</p> http://stackoverflow.com/questions/1907670/asp-net-localhost-routing-issue/1907840#1907840 0 Answer by Anthony Potts for ASP.NET localhost routing issue Anthony Potts 2009-12-15T14:31:31Z 2009-12-15T14:31:31Z <p>Yeah, that's a tricky one, it's gotten me before too. Follow this: <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a></p> http://stackoverflow.com/questions/1904010/reusing-a-contextmenu-for-multiple-controls-in-wpf 0 Reusing a ContextMenu for multiple controls in WPF. Anthony Potts 2009-12-14T22:37:34Z 2009-12-15T05:08:19Z <p>I have three tree view controls which house different (but mostly similar data), as a result the actions that can be taken at each level is the same as far as the user is concerned, but different in their type (which is something I have to worry about as the developer). What I would <em>like</em> to do is reuse this context menu and pass in a type to it (or be able to retrieve it) and then the type would get passed through to the actual Executed function.</p> <p>So that we can have a common verbage here's some code:</p> <pre><code>&lt;UserControl x:Class="ucControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:LocalNamespace" Name="ucControl" xmlns:my="http://schemas.microsoft.com/wpf/2008/toolkit" Background="LightGray"&gt; &lt;UserControl.Resources&gt; &lt;ContextMenu x:Key="GroupMenu"&gt; &lt;MenuItem Header="Add Group" Command="New"/&gt; &lt;MenuItem Header="Rename Group" Command="local:CustomCommands.RenameGroup"/&gt; &lt;MenuItem Header="Delete Group" Command="Delete"/&gt; &lt;Separator/&gt; &lt;MenuItem Header="Change Contents of Group" Command="local:CustomCommands.EditGroupContents"/&gt; &lt;/ContextMenu&gt; &lt;/UserControl.Resources&gt; &lt;UserControl.CommandBindings&gt; &lt;CommandBinding CanExecute="CanAddGroup" Command="New" Executed="AddGroup"/&gt; &lt;CommandBinding Command="local:CustomCommands.RenameGroup" CanExecute="CanRename" Executed="RenameGroup"/&gt; &lt;CommandBinding Command="local:CustomCommands.EditGroupContents" CanExecute="CanEditGroupContents" Executed="EditGroupContents"/&gt; &lt;/UserControl.CommandBindings&gt; &lt;TabControl Name="tcTabs"&gt; &lt;TabItem Header="Size" Name="tiSize"&gt; &lt;TreeView Name="tvSizeGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;TabItem Header="Brand" Name="tiBrand"&gt; &lt;TreeView Name="tvBrandGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;TabItem Header="Color" Name="tiColor"&gt; &lt;TreeView Name="tvColorGroup" ContextMenu="{StaticResource GroupMenu}"/&gt; &lt;/TabItem&gt; &lt;/TabControl&gt; </code></pre> <p></p> <p>In this example, I would like for each of Size, Brand, and Color to have the same ContextMenu, but if the Context Menu is pulled up in the Size TreeView, I will need to add a group of type Size to my table. Is this possible the way I am doing it? I am trying to avoid making three ContextMenus, which would obviously be a way to do this.</p> http://stackoverflow.com/questions/1888794/asp-net-mvc-error-after-deploying-on-the-hosting-web-site/1888833#1888833 0 Answer by Anthony Potts for ASP.net MVC ERROR after deploying on the hosting web site Anthony Potts 2009-12-11T15:30:26Z 2009-12-11T15:30:26Z <p>Have you set your project to do bin deployment?</p> <p>See this post by Phil Haack: <a href="http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx" rel="nofollow">http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx</a></p> http://stackoverflow.com/questions/1888773/wpf-xaml-and-the-future-of-ms-development/1888807#1888807 1 Answer by Anthony Potts for WPF, Xaml and the future of MS Development Anthony Potts 2009-12-11T15:27:17Z 2009-12-11T15:27:17Z <p>Microsoft itself has begun developing its enterprise applications in WPF. They are invested in keeping it going for themselves, no reason to believe that the rug will just get pulled. Also, WPF has the Silverlight subset, which doesn't seem to be losing steam.</p> http://stackoverflow.com/questions/1882095/returning-and-sending-data-from-an-asp-net-web-service/1882118#1882118 1 Answer by Anthony Potts for Returning and Sending data from an ASP.net Web Service Anthony Potts 2009-12-10T16:15:45Z 2009-12-10T16:15:45Z <p>I prefer the serialized method when using this type of webservice. However, you might look at WCF since it offers many advantages over an ASMX web service.</p> http://stackoverflow.com/questions/1881961/freezing-columns-in-wpf-datagrid 0 Freezing columns in wpf datagrid Anthony Potts 2009-12-10T15:56:53Z 2009-12-10T16:03:03Z <p>I have some tabular data which has a lot of fields in it, and when my WPF application is resized a lot of them are cut off. However, I want to see the first 6 columns always as they are important. How can I achieve this in a grid format? I am using the WPFToolkit DataGrid but can be persuaded to change to a different control if one exists. </p> <p>Right now, I am using two different DataGrids side by side with the right most datagrid inside a scrollviewer with horizontal scrolling on and the vertical scrolling off. I will also have to either sync the two for sorting purposes or disable sorting altogether. </p> http://stackoverflow.com/questions/1881961/freezing-columns-in-wpf-datagrid/1882019#1882019 0 Answer by Anthony Potts for Freezing columns in wpf datagrid Anthony Potts 2009-12-10T16:03:03Z 2009-12-10T16:03:03Z <p>Okay, it's trivial in that control, all you have to do is set FrozenColumnCount = "6", in my case. Maybe someone else will need this and they can laugh at my stupidity.</p> http://stackoverflow.com/questions/1877026/detecting-a-301-db2-error-in-net 0 Detecting a -301 DB2 error in .NET Anthony Potts 2009-12-09T21:29:50Z 2009-12-09T22:07:17Z <p>I have an application in VB.NET which is generating some -301 errors in DB2 on an update statement using an ADO.NET connection.</p> <p>It appears that DB2 reports the occurrence of this error, but then fixes whatever data was wrong and resubmits. This fixing and resubmission comes with additional overhead and in turn real dollars and cents cost because this is mainframe DB2.</p> <p>Is there a way to detect this -301 error in some way? I am not able to recreate the problem. I only know this is happening because DB2 reports that the error occurred, but because I am using a parameterized query and due to the configuration of DB2 I am not able to determine the values of the parameters.</p> <p>At this point I think that my best bet is to serialize the inputs that I am getting and then write them out to xml and when my DBA is able to tell me when an error occurs, I will take the file and then reprocess in a test environment one by one. That is, unless there is something which I can check, like a return code, and then send an error email with a serialization of the offending object instance.</p> http://stackoverflow.com/questions/1877149/using-subsonic-how-to-add-a-field-to-a-pre-defined-class/1877179#1877179 2 Answer by Anthony Potts for Using SubSonic, how to add a field to a pre-defined class? Anthony Potts 2009-12-09T21:53:46Z 2009-12-09T21:53:46Z <p>Use a partial class. All classes in Subsonic are defined as partial. What you do is (in a separate file than the one that is generated by Subsonic), you create another part of the partial class with the additional property. </p> <p>Option 2 here: <a href="http://jamesewelch.wordpress.com/2008/09/24/how-to-use-custom-audit-fields-with-subsonic/" rel="nofollow">http://jamesewelch.wordpress.com/2008/09/24/how-to-use-custom-audit-fields-with-subsonic/</a></p> http://stackoverflow.com/questions/1874705/pack-uri-and-path-not-resolving-image-in-wpf 0 Pack URI and path not resolving image in WPF Anthony Potts 2009-12-09T15:34:53Z 2009-12-09T16:37:47Z <p>I have the following directory structure</p> <pre><code>Project \Images +view.png control.xaml </code></pre> <p>and in the control I have a button defined by the following XAML:</p> <pre><code>&lt;Button Click="Search" Grid.Column="1" Margin="0,5,5, 0" HorizontalAlignment="Right"&gt; &lt;Button.Template&gt; &lt;ControlTemplate TargetType="{x:Type Button}"&gt; &lt;Image Source="pack://application:,,,/images/view.png" Width="16" Height="16" ToolTip="Search" Cursor="Hand" Opacity="0.8" /&gt; &lt;/ControlTemplate&gt; &lt;/Button.Template&gt; &lt;/Button&gt; </code></pre> <p>However, neither this pack URI method nor the "/images/view.png" is working. As I understand it, this is the same issue <a href="http://stackoverflow.com/questions/278943/in-wpf-how-do-i-specify-the-path-to-a-file-nested-in-a-directory-using-xaml" title="this question">this question</a> raises. However, I get the same error. The confusing thing is that in designer in Visual Studio 2008, the image renders correctly, but on the call to the InitializeComponent() call, I get: </p> <blockquote> <p>Cannot convert string 'pack://application:,,,/images/view.png' in attribute 'Source' to object of type 'System.Windows.Media.ImageSource'. Cannot locate resource 'images/view.png'. Error at object 'System.Windows.Controls.ControlTemplate' in markup file 'RecapSpecEditControl;component/modaltreadgroupdatadialog.xaml' Line 61 Position 40.</p> </blockquote> <p>I thought that maybe there was a namespace that I had to declare but according to the <a href="http://msdn.microsoft.com/en-us/library/aa970069.aspx" rel="nofollow" title="msdn site">msdn site</a> I believe I don't have to do anything like that.</p> http://stackoverflow.com/questions/1874705/pack-uri-and-path-not-resolving-image-in-wpf/1875076#1875076 1 Answer by Anthony Potts for Pack URI and path not resolving image in WPF Anthony Potts 2009-12-09T16:30:45Z 2009-12-09T16:37:47Z <p>I actually got this to work, but had to set my source to "/ProjectName;component/images/view.png" Because I have the ProjectName as a referenced assembly this is then the same as the Path: portion at the msdn page that I referenced in the question.</p> http://stackoverflow.com/questions/1772072/freezing-a-datagridtextcolumn-in-wpf 0 Freezing a DataGridTextColumn in WPF Anthony Potts 2009-11-20T17:31:08Z 2009-11-20T18:29:39Z <p>I would like to freeze a DataGridTextColumn in WPF but it looks like there is not a property for that in that class specifically. However, looking at the source for the WPFToolkit, there is a IsFrozen in DataGridColumn which is the parent of DataGridBoundColumn, which is the parent of DataGridTextColumn. So...why isn't that property available?</p> http://stackoverflow.com/questions/1751491/sql-query-to-get-all-the-data-in-specific-range/1751524#1751524 0 Answer by Anthony Potts for SQL query to get all the data in specific range. Anthony Potts 2009-11-17T20:26:35Z 2009-11-17T20:26:35Z <p>This should be correct. One caveat is that if anything costs an integral amount, it will show up depending on your flavor of sql because "between" is sometimes inclusive. </p> http://stackoverflow.com/questions/1711268/calling-the-user-attention-outside-of-app/1711296#1711296 1 Answer by Anthony Potts for calling the user attention outside of app Anthony Potts 2009-11-10T21:23:25Z 2009-11-10T21:23:25Z <p>You could also make it a system tray application and change the icon out if there is something which requires attention, a la a messenger application. That may not be "hard to miss" but I am trained (for better or worse) to look down at the icon tray when I see something blinking.</p> http://stackoverflow.com/questions/1711213/how-do-you-set-the-command-timeout-in-ssis/1711251#1711251 0 Answer by Anthony Potts for How do you set the command timeout in SSIS? Anthony Potts 2009-11-10T21:17:17Z 2009-11-10T21:17:17Z <p>I see there is a hotfix for this, I don't know if it applies to you or not: <a href="http://support.microsoft.com/kb/956911" rel="nofollow">Hotfix link</a></p> http://stackoverflow.com/questions/1711152/how-can-i-see-data-in-mdf-file/1711189#1711189 4 Answer by Anthony Potts for how can i see data in mdf file. Anthony Potts 2009-11-10T21:06:33Z 2009-11-10T21:12:31Z <p>Using SQL Server Management Studio Express you can attach that file. </p> <p><a href="http://msdn.microsoft.com/en-us/library/ms190209.aspx" rel="nofollow">How to attach a file</a></p> <p>However, if you are viewing that in a project in Visual Studio, you can see that in the server explorer.</p> <p>Also, <a href="http://forums.asp.net/t/1369611.aspx" rel="nofollow">here</a> is a similar question on the asp.net forums.</p> http://stackoverflow.com/questions/1545343/is-reading-too-many-management-books-too-early-for-me/1545387#1545387 3 Answer by Anthony Potts for Is reading too many management books too early for me? Anthony Potts 2009-10-09T18:32:58Z 2009-11-02T17:28:51Z <p>The thing is that you are already a manager...of yourself. </p> <p>The problem that some managers run into is that they are woefully unprepared for a management role when they are thrust into it. If you have that as a goal, prepare for it now.</p> <p>Also, if it interests you, read about it, you never know when a topic you are covering will be handy. Then again, I have ADD, so that's probably not a valid point.</p> http://stackoverflow.com/questions/1661452/how-do-i-make-a-category-for-each-unique-db-entry-mysql-php/1661483#1661483 1 Answer by Anthony Potts for How do I make a category for each unique DB entry? (MySQL/PHP) Anthony Potts 2009-11-02T14:01:59Z 2009-11-02T14:01:59Z <p>The query is one that is pretty simple: </p> <pre><code>SELECT votedon, count(*) FROM VOTING_TABLE GROUP BY votedon </code></pre> <p>Now, I don't know how that fits into codeigniter, but a mysql connection from php is not that hard, and if this is really sort of an ad hoc thing, this will do.</p> http://stackoverflow.com/questions/1644780/visual-studio-debugging-ignore-exception-in-one-place-while-breaking-at-it-else/1644797#1644797 1 Answer by Anthony Potts for Visual Studio debugging - ignore exception in one place while breaking at it elsewhere? Anthony Potts 2009-10-29T16:06:39Z 2009-10-29T16:06:39Z <p>If you know how you are calling it, I would set the break point in your code and then step into (F11) from there. You could also smack the programmer until they fix their code, which would have the effect of making you feel better (unless you are a pacifist) and maybe they won't have so many ArgumentExceptions in their code (which would probably make you feel better even if you are a pacifist).</p> http://stackoverflow.com/questions/1532106/visual-studio-2008-intellisense-for-an-enumeration-type 2 Visual Studio 2008 intellisense for an enumeration type Anthony Potts 2009-10-07T14:45:11Z 2009-10-14T15:37:29Z <p>Is there a setting whereby intellisense in Visual Studio will also put variables in the intellisense pop up instead of just the values for the enumerated type? It obviously knows it is supposed to be an enumeration. Maybe this is just a mechanism to keep me from putting something in there that might cause an exception. </p> <p>Consider the following setup: (It's a bit contrived, and I'm sorry about that.)</p> <pre><code>Public Enum PhraseEmphasis Monotone = 0 Question Statement Exclamation CrazyExclamation QuestioningExclamation Cursing End Enum Private _emphasisFromCode as PhraseEmphasis Public Function Speak(ByVal phrase As String, ByVal emphasis As PhraseEmphasis) as String Select Case emphasis Case PhraseEmphasis.Question Return phrase + '?' Case PhraseEmphasis.Statement Return phrase + '.' Case PhraseEmphasis.Exclamation Return phrase + '!' Case PhraseEmphasis.CrazyExclamation Return phrase + '!!!1!eleven!!' Case PhraseEmphasis.QuestioningExclamation Return phrase + '?!' Case PhraseEmphasis.Cursing Return '!@#@%@#!' Case Else Return phrase End Select End Function </code></pre> <p>Now, in the code I have something that sets the _emphasisFromCode (obviously) and then I want to call the function. Then what happens when I start typing Speak("HelloWorld", ...) at the elipses there, I don't like the intellisense. The only thing that pops up in the intellisense is a list of all enumerations. </p> <p>And now I have spent a disproportionate amount of time explaining this with respect to how much I actually care. However, my machine is really slow in compiling today.</p> http://stackoverflow.com/questions/1549681/vcproj-or-vcxproj-build-include-tag-question/1549689#1549689 0 Answer by Anthony Potts for VcProj or VcxProj Build Include Tag Question Anthony Potts 2009-10-11T02:36:57Z 2009-10-11T02:36:57Z <p>Have you looked at this? <a href="http://msdn.microsoft.com/en-us/library/2208a1f2%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/2208a1f2(VS.71).aspx</a></p> http://stackoverflow.com/questions/1535345/where-should-form-validation-occur-in-a-mvc-project/1535382#1535382 0 Answer by Anthony Potts for Where should form validation occur in a MVC project? Anthony Potts 2009-10-08T02:58:38Z 2009-10-08T02:58:38Z <p>I prefer to not repeat myself over feelings, do the method. Besides the array is handy since you can show the errors from the array in a view if you wanted. I have not used kohana, but the validation method I have been using in ASP.NET MVC provides me with a similar list and I can then show the user what precisely is wrong.</p> http://stackoverflow.com/questions/1528248/asp-net-mvc-in-a-subfolder-only-on-godaddy 1 ASP.NET MVC in a subfolder (only) on godaddy Anthony Potts 2009-10-06T21:38:28Z 2009-10-08T02:49:22Z <p>Okay, I have read many of the routing posts concerning putting asp.net mvc on godaddy. However, I have not come to a solution to my current problem. I am trying to publish an ASP.NET MVC application to a subfolder on godaddy. I have upgraded the account to use IIS 7 and I have included the MVC dlls in \bin\ deployment method. However, I suspect that my route is not correct. </p> <p>Currently, my routes are set up with the standard out of the box route:</p> <pre><code>public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); } </code></pre> <p>I have a subdomain set up so that it looks like office.domain.com. The subdomain is pointing at a folder "/office/" which is right off the root folder. (There is not an MVC application installed in the root folder). All of my application has been placed in this 'office' folder. When I hover over the links however, the 'office' portion shows up in the link as well. e.g. Hovering over a link to the customer controller, index action yields "office.domain.com/office/Customer" as the target. This link then gets a 404 when I attempt to go to it.</p> <p>What should my route be to fix this? Is there something I have neglected in setting up the subdomain in godaddy? Is this something I just can't <em>do</em> in godaddy's domain management "tool". Do I need to set up a virtual directory for this instead of just a directory?</p> <p>Update: I changed the IIS settings in godaddy to use integrated pipeline mode, per <a href="http://stackoverflow.com/questions/1144421/asp-net-mvc-extension-less-urls-on-shared-hosting-godaddy-etc">this discussion</a> and I am no longer getting 404 errors. The application worked just fine as suggested it would.</p> http://stackoverflow.com/questions/1534161/lack-of-invariance-in-stackoverflow-url-why/1534178#1534178 0 Answer by Anthony Potts for Lack of invariance in stackoverflow URL. Why ? Anthony Potts 2009-10-07T21:04:38Z 2009-10-07T21:04:38Z <p>This allows you to see in the url some text which means something to you. If I look in a history of links a bunch of questions, the number alone would be meaningless. However, having the text there allows me to have some context.</p> http://stackoverflow.com/questions/1531323/changing-alt-tags-and-image-path-with-jquery/1531380#1531380 4 Answer by Anthony Potts for Changing alt tags and image path with jQuery Anthony Potts 2009-10-07T12:39:00Z 2009-10-07T14:33:10Z <p>My first question would be, why aren't those paths in the img tag already? </p> <p>If you need all img tags to be updated to include that information. First, you need to loop through all the img elements. This is simply: <code>$("img").each( functions here)</code></p> <p>From here, you can do as some others have pointed out and get the attributes using the attr method and then alter them. </p> <pre><code>$("img").each( function(){ $(this).attr({ src: '/image/' + $(this).attr('src'), alt: '/image/' + $(this).attr('alt') + '.jpg' }); }); </code></pre> http://stackoverflow.com/questions/1394910/how-to-tame-the-windows-headers-useful-defines/1394923#1394923 5 Answer by Anthony Potts for How to tame the Windows headers (useful defines)? Anthony Potts 2009-09-08T16:26:26Z 2009-09-08T16:32:25Z <p>There's <code>WIN32_LEAN_AND_MEAN</code> which causes some of the lesser used child headers to not be loaded. </p> <p>This <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=544437" rel="nofollow">forum post</a> has a decent discussion about that macro in particular.</p> http://stackoverflow.com/questions/1928392/how-to-insert-space-after-each-character-in-a-string-mysql Comment by Anthony Potts on How to insert space after each character in a string MySQL Anthony Potts 2009-12-18T14:11:09Z 2009-12-18T14:11:09Z I'm curious to know what the reporting reasons are. http://stackoverflow.com/questions/234929/editable-wpf-gridview-row/236197#236197 Comment by Anthony Potts on Editable WPF GridView Row Anthony Potts 2009-12-17T22:03:24Z 2009-12-17T22:03:24Z 800 dollars doesn't look free to me. http://stackoverflow.com/questions/1907670/asp-net-localhost-routing-issue/1907840#1907840 Comment by Anthony Potts on ASP.NET localhost routing issue Anthony Potts 2009-12-16T19:41:38Z 2009-12-16T19:41:38Z You should probably really try it exactly like he has it there first. http://stackoverflow.com/questions/1907880/one-wire-problem-1wire-the-whole-code Comment by Anthony Potts on One Wire Problem (1wire) the whole code Anthony Potts 2009-12-15T14:48:25Z 2009-12-15T14:48:25Z Christian, welcome to Stackoverflow. Look around at some questions and see how they are phrased. You'll find that people really want to help, but there is a certain amount of protocol to follow first. http://stackoverflow.com/questions/1907722/wpf-howto-display-a-layer-over-all-controls/1907757#1907757 Comment by Anthony Potts on WPF: Howto display a layer over all Controls Anthony Potts 2009-12-15T14:43:58Z 2009-12-15T14:43:58Z I've done this tinted thing with a border named &quot;Shadow&quot; Background=&quot;Black&quot; Opacity=&quot;0.36&quot; Visibility=&quot;Hidden&quot;. I found this in the code samples for &quot;Pro WPF with VB 2008&quot; by Matthew MacDonald. http://stackoverflow.com/questions/1904010/reusing-a-contextmenu-for-multiple-controls-in-wpf/1905288#1905288 Comment by Anthony Potts on Reusing a ContextMenu for multiple controls in WPF. Anthony Potts 2009-12-15T14:03:27Z 2009-12-15T14:03:27Z That should work, I was going to have to do get an id from the element anyway in some of the methods. http://stackoverflow.com/questions/1888773/wpf-xaml-and-the-future-of-ms-development/1888807#1888807 Comment by Anthony Potts on WPF, Xaml and the future of MS Development Anthony Potts 2009-12-11T16:04:51Z 2009-12-11T16:04:51Z It's the nature of the beast that no language really sticks around. Except COBOL, which I still do on occassion. http://stackoverflow.com/questions/1882105/user-controls-in-asp-net-mvc/1882178#1882178 Comment by Anthony Potts on User controls in ASP.NET MVC Anthony Potts 2009-12-10T16:25:04Z 2009-12-10T16:25:04Z I would not suggest relying heavily on magic strings. They are rife with issues. Strongly typing is preferable and then makes the partial view easier to implement as well. http://stackoverflow.com/questions/1874705/pack-uri-and-path-not-resolving-image-in-wpf/1874781#1874781 Comment by Anthony Potts on Pack URI and path not resolving image in WPF Anthony Potts 2009-12-09T16:31:35Z 2009-12-09T16:31:35Z Found the solution, but yours is definitely worth noting as a possible answer under the right circumstances as you demonstrated. Thanks for the help. http://stackoverflow.com/questions/1874973/in-vs2008-cant-close-designer-view-before-studio-crashes Comment by Anthony Potts on In VS2008, can't close designer view before studio crashes Anthony Potts 2009-12-09T16:16:13Z 2009-12-09T16:16:13Z Is this a WPF application per chance? http://stackoverflow.com/questions/1874705/pack-uri-and-path-not-resolving-image-in-wpf/1874781#1874781 Comment by Anthony Potts on Pack URI and path not resolving image in WPF Anthony Potts 2009-12-09T16:10:14Z 2009-12-09T16:10:14Z Your answer made total sense, and I was certain that I would see that my build action was wrong. http://stackoverflow.com/questions/1874705/pack-uri-and-path-not-resolving-image-in-wpf/1874781#1874781 Comment by Anthony Potts on Pack URI and path not resolving image in WPF Anthony Potts 2009-12-09T15:52:32Z 2009-12-09T15:52:32Z I thought you might be on to something, but my build action on the image is already set to resource. What about the Copy to Output directory, what do you have that set as? http://stackoverflow.com/questions/1310966/enable-scroll-for-wpf-treeview/1312349#1312349 Comment by Anthony Potts on Enable scroll for WPF Treeview Anthony Potts 2009-12-08T22:39:55Z 2009-12-08T22:39:55Z I added a height to the grid and this worked. http://stackoverflow.com/questions/20611/removing-nodes-from-an-xmldocument Comment by Anthony Potts on Removing nodes from an XmlDocument Anthony Potts 2009-12-07T19:29:05Z 2009-12-07T19:29:05Z I was looking for just this thing. I spent a half a day looking for xml stuff on the internet and half a minute on SO. Yet another reason why Jeff and Joel were on to something. http://stackoverflow.com/questions/1772072/freezing-a-datagridtextcolumn-in-wpf/1772399#1772399 Comment by Anthony Potts on Freezing a DataGridTextColumn in WPF Anthony Potts 2009-11-20T19:22:57Z 2009-11-20T19:22:57Z Ahh, yes...of course. I don't know that this is what I wanted anyway. I'm wanting a datagrid to scroll right to left but keep a few columns where they are. This may be better served by having two datagrid's next to each other and have the right most datagrid in a scrollable panel.