User Andrew Myhre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:06:48Z http://stackoverflow.com/feeds/user/5152 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1560464/is-there-an-extension-to-reindent-json-in-notepad/1595687#1595687 0 Answer by Andrew Myhre for Is there an extension to reindent JSON in Notepad++? Andrew Myhre 2009-10-20T15:58:52Z 2009-10-20T15:58:52Z <p>No, not at this time.</p> <p>:)</p> http://stackoverflow.com/questions/1531418/record-the-correct-http-content-type-of-a-response-in-an-httpmodule 0 Record the correct HTTP content-type of a response in an HttpModule Andrew Myhre 2009-10-07T12:46:07Z 2009-10-07T12:46:07Z <p>I want to log site traffic in .Net using an HttpModule. in the HttpContext.EndRequest event handler I'm storing the Response.ContentType property value to the database. On my local dev instance it is storing the correct content types i.e: image/gif for .gif, text/html for .aspx etc. However on an IIS 6 server it always stores the content-type text/html for any type of file. There is a wildcard ISAPI mapping on the IIS 6 website ensuring that all requests are routed through ASP.Net.</p> <p>Why would the log always output text/html on the IIS 6 server but the appropriate content-type on my dev machine?</p> <p>The application configuration in IIS 6:</p> <p><img src="http://img188.imageshack.us/img188/6365/iis6applicationconfigur.png" alt="alt text" /></p> <p>The code to log the content-type:</p> <pre><code>public void Init(HttpApplication context) { log4net.Config.XmlConfigurator.Configure(); context.EndRequest += new EventHandler(context_EndRequest); } void context_EndRequest(object sender, EventArgs e) { HttpApplication app = sender as HttpApplication; HttpContext context = app.Context; log.DebugFormat("content-type:{0}", context.Response.ContentType); } </code></pre> http://stackoverflow.com/questions/530450/why-does-a-wpf-bitmapimage-object-not-download-an-image-from-a-uri-source-in-asp 0 Why does a WPF BitmapImage object not download an image from a Uri Source in ASP.Net Web Forms? Andrew Myhre 2009-02-09T22:57:24Z 2009-05-08T12:58:25Z <p>I'm trying to accomplish the following in ASP.Net:</p> <ol> <li>Create a WPF Canvas control</li> <li>Spin up a WPF Image control and a BitmapImage object</li> <li>Set the BitmapImage source to a Uri for an image</li> <li>Add the image to the canvas</li> <li>When the image is downloaded render the canvas to a new bitmap</li> </ol> <p>My code works correctly in WPF itself, however when running in an ASP.Net page the image is not downloaded.</p> <p>It works totally fine for other WPF UI elements. In the case of Image, using the BitmapImage.StreamSource property to set the source works correctly. When I use the BitmapImage.UriSource property the BitmapImage.DownloadCompleted event isn't raised, which hints that the image never starts downloading in the first place.</p> <p>It's important to note that it works fine for most controls - ellipses, rectangles, ink presenters, and also the Image control so long as I use a stream source rather than a uri source.</p> <p>So, what am I missing here? Why does the BitmapImage class behave differently in a web application?</p> <p>I know I'll get asked so the purpose in doing this is that I have written a Silverlight client to create graphical content which is stored on a web server. I want the web server to render the content to bitmap files.</p> <p>Thanks in advance for any advice..</p> <p>Here's my code for the ASP.Net page:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Windows.Controls; using System.Windows.Media.Imaging; using System.Threading; using System.Windows; using System.Net; using System.IO; using System.Windows.Media; public partial class _Default : System.Web.UI.Page { private static Canvas c; protected void Page_Load(object sender, EventArgs e) { Thread t = new Thread(new ThreadStart( delegate { DownloadAndSave(); })); t.SetApartmentState(ApartmentState.STA); t.Start(); t.Join(); } [STAThread] void DownloadAndSave() { c = new Canvas(); BitmapImage bitmap = new BitmapImage(); System.Windows.Controls.Image image = new System.Windows.Controls.Image(); bitmap.DownloadCompleted += new EventHandler(bitmap_DownloadCompleted); bitmap.BeginInit(); bitmap.UriSource = new Uri("http://andrew.myhre.tanash.net/customassets/andrewmyhre/image/face.jpg"); bitmap.EndInit(); image.Source = bitmap; c.Children.Add(image); c.UpdateLayout(); c.Measure(new Size(400, 300)); c.Arrange(new Rect(new Size(400, 300))); } void bitmap_DownloadCompleted(object sender, EventArgs e) { // this never fires!! SaveImage(c); } void SaveImage(UIElement element) { RenderTargetBitmap bmp = new RenderTargetBitmap(400, 300, 96, 96, PixelFormats.Pbgra32); bmp.Render(element); BitmapEncoder encoder = new JpegBitmapEncoder(); encoder.Frames.Add(BitmapFrame.Create(bmp)); using (Stream stm = File.Create(Server.MapPath("~/file.jpg"))) encoder.Save(stm); } } </code></pre> http://stackoverflow.com/questions/350027/setting-wpf-image-source-in-code/530382#530382 2 Answer by Andrew Myhre for Setting WPF image source in code Andrew Myhre 2009-02-09T22:37:41Z 2009-02-09T22:37:41Z <p>Have you tried:</p> <pre><code>Assembly asm = Assembly.GetExecutingAssembly(); Stream iconStream = asm.GetManifestResourceStream("SomeImage.png"); BitmapImage bitmap = new BitmapImage(); bitmap.BeginInit(); bitmap.StreamSource = iconStream; bitmap.EndInit(); _icon.Source = bitmap; </code></pre> http://stackoverflow.com/questions/298689/getmodifiedmembers-returns-empty-array/369985#369985 0 Answer by Andrew Myhre for GetModifiedMembers returns empty array Andrew Myhre 2008-12-15T22:54:42Z 2008-12-15T22:54:42Z <p>I know this isn't an answer but I haven't been able to replicate your issue.</p> <p>Using the following code in a console application I get an array of length 1:</p> <pre><code> testdbDataContext db = new testdbDataContext(); Address a = new Address(); db.GetTable(a.GetType()).Attach(a); a.Address1 = "simple change"; var result = db.GetTable(a.GetType()).GetModifiedMembers(a); Console.WriteLine(result.Length); Console.ReadKey(); </code></pre> <p>Console output is '1'. Try modifying another property on the foo object and see if your result differs.</p> http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005 1 How do I perform a case-sensitive search and replace in SQL 2000/2005? Andrew Myhre 2008-09-22T09:02:10Z 2008-10-24T01:29:28Z <p>In order to perform a case-sensitive search/replace on a table in a SQL 2000/2005 database, you must use the correct collation. How do you determine whether the default collation for a database is case-sensitive, and if it isn't, how to perform a case-sensitive search/replace?</p> http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005 0 How do I determine the collation of a database in SQL 2005? Andrew Myhre 2008-09-22T08:57:03Z 2008-10-02T20:49:14Z <p>How do you determine the collation of a database in SQL 2005, for instance if you need to perform a case-insensitive search/replace?</p> http://stackoverflow.com/questions/158372/how-do-i-build-a-wpf-application-where-i-can-drag-and-drop-a-user-control-between 1 How do I build a WPF application where I can drag and drop a user control between windows? Andrew Myhre 2008-10-01T16:06:02Z 2008-10-01T16:15:57Z <p>I'm building a simple Todo List application where I want to be able to have multiple lists floating around my desktop that I can label and manage tasks in.</p> <p>The relevant UIElements in my app are:</p> <p>Window1 (Window) TodoList (User Control) TodoStackCard (User Control)</p> <p>Window1 looks like this:</p> <pre><code>&lt;Window x:Class="TaskHole.App.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:t="clr-namespace:TaskHole.App.Controls" xmlns:tcc="clr-namespace:TaskHole.CustomControls" Title="Window1" Width="500" Height="500" Background="Transparent" WindowStyle="None" AllowsTransparency="True" &gt; &lt;Canvas Name="maincanvas" Width="500" Height="500" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"&gt; &lt;ResizeGrip SizeChanged="ResizeGrip_SizeChanged" /&gt; &lt;t:TodoList Canvas.Top="0" Canvas.Left="0" MinWidth="30" Width="50" Height="500" x:Name="todoList" TaskHover="todoList_TaskHover" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/&gt; &lt;/Canvas&gt; &lt;/Window&gt; </code></pre> <p>TodoList looks like this:</p> <pre><code>&lt;UserControl x:Class="TaskHole.App.Controls.TodoList" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:t="clr-namespace:TaskHole.App.Controls" xmlns:tcc="clr-namespace:TaskHole.CustomControls" Background="Transparent"&gt; &lt;StackPanel VerticalAlignment="Bottom" HorizontalAlignment="Stretch" MinWidth="1" Grid.Row="2" Height="Auto" AllowDrop="True"&gt; &lt;ItemsControl Name="todolist" ItemsSource="{Binding}"&gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;VirtualizingStackPanel Name="stackPanel" VerticalAlignment="Bottom"&gt; &lt;/VirtualizingStackPanel&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;t:TodoStackCard x:Name="card" TaskHover="card_TaskHover" Orientation="Vertical" VerticalContentAlignment="Top" /&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; &lt;/StackPanel&gt; &lt;/UserControl&gt; </code></pre> <p>I have multiple instances of these windows, and I want to be able to drag any of the controls between the windows. I have tried using a Thumb control and, while this works, it only allows me to drag a control around the containing canvas. </p> <p>How do I mimic the behaviour of, say, Windows Explorer, where I can drag a file outside of the application and onto another application, all the while seeing a ghosted representation of the file under the cursor. </p> <p>Can I accomplish this purely in C# and WPF? If so/if not, how?</p> http://stackoverflow.com/questions/146896/how-to-access-userid-in-asp-net-membership-without-using-membership-getuser/148026#148026 0 Answer by Andrew Myhre for How to access UserId in ASP.NET Membership without using Membership.GetUser() ? Andrew Myhre 2008-09-29T09:04:46Z 2008-09-29T09:04:46Z <p>You have two options here:</p> <p>1) Use username as the primary key for your user data table i.e:</p> <pre><code>select * from [dbo.User] where Username = 'andrew.myhre' </code></pre> <p>2) Add UserID to the profile.</p> <p>There are pros and cons to each method. Personally I prefer the first, because it means I don't necessarily need to set up the out-of-the-box profile provider, and I prefer to enforce unique usernames in my systems anyway.</p> http://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-2005 1 How do I find out what collations are available in SQL 2000/2005 Andrew Myhre 2008-09-22T09:07:05Z 2008-09-23T00:30:52Z <p>If I need to choose a collation mode to work with, how do I know what collations are available?</p> http://stackoverflow.com/questions/90661/is-there-any-tool-to-see-at-a-glance-the-changes-of-a-tfs-checkin-for-review/113960#113960 0 Answer by Andrew Myhre for Is there any tool to see at a glance the changes of a TFS checkin (for review) Andrew Myhre 2008-09-22T09:23:33Z 2008-09-22T09:29:35Z <p>You can analyse changes using the TFS API down to the level of what <em>files</em> have changed, but to determine what <em>content in a file</em> has changed you need to use external tool/library. There is a comparison/merge tool that ships with Visual Studio Team Explorer but this is still an external tool that processes the changes at runtime. Just FYI.</p> <p>Edit: I think I may be completely wrong!</p> http://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-2005/113917#113917 1 Answer by Andrew Myhre for How do I find out what collations are available in SQL 2000/2005 Andrew Myhre 2008-09-22T09:07:17Z 2008-09-22T09:07:17Z <p>Use this query to list the available collation modes:</p> <p>SELECT * FROM fn_helpcollations()</p> http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/113912#113912 0 Answer by Andrew Myhre for How do I perform a case-sensitive search and replace in SQL 2000/2005? Andrew Myhre 2008-09-22T09:05:29Z 2008-09-22T09:05:29Z <p>Determine whether the default collation is case-sensitive like this:</p> <p>select charindex('If the result is 0 you are in a case-sensitive collation mode', 'RESULT')</p> <p>A result of 0 indicates you are in a case-sensitive collation mode, 1 indicates it is case-insensitive.</p> <p>If the collation is case-insensitive, you need to explicitly declare the collation mode you want to use when performing a search/replace.</p> <p>Here's how to construct an UPDATE statement to perform a case-sensitive search/replace by specifying the collation mode to use:</p> <p>update ContentTable set ContentValue = replace(ContentValue COLLATE Latin1_General_BIN, 'THECONTENT', 'TheContent') from StringResource where charindex('THECONTENT', ContentValue COLLATE Latin1_General_BIN) > 0</p> <p>This will match and replace 'THECONTENT', but not 'TheContent' or 'thecontent'.</p> http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005/113885#113885 1 Answer by Andrew Myhre for How do I determine the collation of a database in SQL 2005? Andrew Myhre 2008-09-22T08:57:43Z 2008-09-22T08:57:43Z <p>Use the following SQL to determine the collation of a database:</p> <p>SELECT DATABASEPROPERTYEX('{database name}', 'Collation') SQLCollation;</p> http://stackoverflow.com/questions/100851/how-do-you-cast-an-ienumerablet-or-iqueryablet-to-an-entitysett 2 How do you cast an IEnumerable<t> or IQueryable<t> to an EntitySet<t> ? Andrew Myhre 2008-09-19T10:00:41Z 2008-09-19T10:29:09Z <p>In this situation I am trying to perform a data import from an XML file to a database using LINQ to XML and LINQ to SQL.</p> <p>Here's my LINQ data model:</p> <pre><code>public struct Page { public string Name; public char Status; public EntitySet&lt;PageContent&gt; PageContents; } public struct PageContent { public string Content; public string Username; public DateTime DateTime; } </code></pre> <p>Basically what I'm trying to do is write a query that will give me a data structure that I can just submit to my LINQ Data Context. </p> <pre><code>IEnumerable&lt;Page&gt; pages = from el in doc.Descendants() where el.Name.LocalName == "page" select new Page() { Name = el.Elements().Where(e =&gt; e.Name.LocalName == "title").First().Value, Status = 'N', PageContents = (from pc in el.Elements() where pc.Name.LocalName == "revision" select new PageContent() { Content = pc.Elements().Where(e =&gt; e.Name.LocalName=="text").First().Value, Username = pc.Elements().Where(e =&gt; e.Name.LocalName == "contributor").First().Elements().Where(e =&gt; e.Name.LocalName == "username").First().Value, DateTime = DateTime.Parse(pc.Elements().Where(e =&gt; e.Name.LocalName == "timestamp").First().Value) }).ToList() }; </code></pre> <p>The problem is in the sub-query. I have to somehow get my object collection into the EntitySet container. I can't cast it (oh lord how I've tried) and there's no EntitySet() constructor that would seem to help.</p> <p>So, can I write a LINQ query that will populate the EntitySet&lt;PageContent&gt; data with my IEnumerable&lt;Page&gt; data?</p> http://stackoverflow.com/questions/100853/what-is-the-difference-between-the-and-opening-tags/100894#100894 1 Answer by Andrew Myhre for What is the difference between the <%# and <%= opening tags? Andrew Myhre 2008-09-19T10:10:29Z 2008-09-19T10:10:29Z <p>&lt;%= is shorthand for Response.Write().<br /> &lt;%# indicates that you're working with the data container in a data bound control.</p> http://stackoverflow.com/questions/83225/how-to-set-up-the-browser-scrollbar-to-scroll-part-of-a-page/83326#83326 1 Answer by Andrew Myhre for How to set up the browser scrollbar to scroll part of a page? Andrew Myhre 2008-09-17T13:40:48Z 2008-09-17T13:40:48Z <p>To find out how people do these kinds of things in CSS and/or Javascript the tool Firebug is just outstanding:</p> <p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug addon for Firefox</a></p> http://stackoverflow.com/questions/70763/good-c-interview-questions-for-a-senior-dev-position/71278#71278 23 Answer by Andrew Myhre for Good C# Interview Questions for a Senior Dev Position Andrew Myhre 2008-09-16T11:10:51Z 2008-09-16T23:16:08Z <p>I'm a senior developer and been involved in a number of interviews, on both sides, and I've learned a lot about interviewing candidates (but still have a lot to learn!). I've tried a few different methods so here's my $0.02. </p> <p>In a senior developer I'm looking for:</p> <ul> <li>Skill/Knowledge</li> <li>Evidence that they have actively tried to improve their work</li> <li>Evidence that they have a real, true interest in the craft </li> <li>Something they've done that I haven't seen before</li> <li>The ability to think software design through mentally</li> </ul> <p>So, here's my current <em>best guess</em> at how to assertain the above:</p> <p>Skill and knowledge, okay this is well covered above but basically I want to see some knowledge of things like the GAC, CLR and JIT. Here are some sample C#-specific questions: - Where are the framework assemblies stored? How is this useful? - Explain the abstract keyword and what is an example of its use? - Can you prevent a class from being inherited by another class? If so, how? - Describe a pattern you have used or seen used.</p> <p><strong>Evidence that they have actively tried to improve their work</strong></p> <p>A senior developer needs to be involved with keeping the skill levels of the rest of the team up, so they need to take an active role in keeping abreast of what their skill levels are and keep them motivated to learn new things. To do this, they <em>must</em> be engaged in learning in their own work. Even 1 or 2 hours per week where they are trying <strong>something</strong> new, at home or after hours, is enough. I'm adamant about this.</p> <p><strong>Evidence that they have a real interest in the craft</strong></p> <p>One way to get to the bottom of this is just to ask the candidate about a project in their career they enjoyed, and just ask how and why they implemented it the way they did. This should be <em>easy</em>, you should actually need to tell the candidate to stop talking. If it's like drawing blood from a stone, they're not the right person.</p> <p><strong>What have they done that You've not done before?</strong></p> <p>Related to the point above. I want the candidate to tell me about something they've done that makes sit up and pay attention. Could be anything. A contractor last year told me about build automation in an interview. Hired.</p> <p><strong>The ability to think software design through mentally</strong></p> <p>Here I'm looking for the candidate to be relatively <em>fluent</em> in the language. A senior developer shouldn't need to do internet searches for keyword use (very often). This point is subjective so apply the needs of the job being interviewed for. </p> <p>To address this point I have asked candidates to write code using pen and paper. Just simple stuff, like a Factorial method or a string reversal method, and a class implementation involving polymorphism. I really believe that some ability to write without a keyboard and a software IDE is crucial. But don't <em>open</em> with this because it scares the crap out of the candidate.</p> <p><strong>The rest</strong></p> <p>There are still things that all of this doesn't cover. There are just things that a senior developer should be aware of, even if they haven't been directly exposed to them: continuous integration, build automation, unit testing, design patterns, web deployment projects, reference vs value types, etc etc etc. Just think of as many as you can and drill them.</p> <p>And don't hire 'maybe's. </p> <p><strong>edit</strong></p> <p>Okay, I actually agree with Vinayak - it may not always be useful to require pen and paper coding, but at the very least have your candidate write some code on a spare PC. It's the only way to know whether they're any good. Oh and ask to see code samples (get your recruitment agents to warn them first).</p> http://stackoverflow.com/questions/17532/asp-net-custom-controls-composites/71331#71331 0 Answer by Andrew Myhre for ASP.NET Custom Controls - Composites Andrew Myhre 2008-09-16T11:20:20Z 2008-09-16T11:20:20Z <p>You might be able to make use of this technique to make design-time easier:</p> <p><a href="http://aspadvice.com/blogs/ssmith/archive/2007/10/19/Render-User-Control-as-String-Template.aspx" rel="nofollow">http://aspadvice.com/blogs/ssmith/archive/2007/10/19/Render-User-Control-as-String-Template.aspx</a></p> <p>Basically you create an instance of a user control at runtime using the LoadControl method, then hand it a statebag of some kind, then attach it to the control tree. So your composite control would actually function like more of a controller, and the .ascx file would be like a view.</p> <p>This would save you the trouble of having to instantiate the entire control tree and style the control in C#!</p> http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/70984#70984 0 Answer by Andrew Myhre for Should programmers be excellent typists? Andrew Myhre 2008-09-16T10:20:09Z 2008-09-16T10:20:09Z <p>I won't hire anyone who types with two fingers and I definitely hesitate if they can't touch-type.</p> <p>I hear the argument that if you make good use of the IDE then you can still be an effective programmer without being able to touch-type, but I would argue that your keyboard <em>is</em> part of your IDE - the most <em>important</em> part in my opinion.</p> http://stackoverflow.com/questions/1629540/guidance-on-modelling-system-with-nhibernate Comment by Andrew Myhre on Guidance on modelling system with Nhibernate Andrew Myhre 2009-10-27T09:39:49Z 2009-10-27T09:39:49Z Can you clarify what you mean by 'model'? Do you want to persist the information being sent/received? Or do you just want to interact with the hardware using a non-specific contract? http://stackoverflow.com/questions/530450/why-does-a-wpf-bitmapimage-object-not-download-an-image-from-a-uri-source-in-asp/531900#531900 Comment by Andrew Myhre on Why does a WPF BitmapImage object not download an image from a Uri Source in ASP.Net Web Forms? Andrew Myhre 2009-02-12T07:37:03Z 2009-02-12T07:37:03Z You're right, the STAThread attribute has no effect on that method. I hadn't known why until now.. http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108646#108646 Comment by Andrew Myhre on What is your single favorite development tool? Andrew Myhre 2008-09-20T18:41:14Z 2008-09-20T18:41:14Z genius :) so true. http://stackoverflow.com/questions/100851/how-do-you-cast-an-ienumerablet-or-iqueryablet-to-an-entitysett/100980#100980 Comment by Andrew Myhre on How do you cast an IEnumerable<t> or IQueryable<t> to an EntitySet<t> ? Andrew Myhre 2008-09-19T10:33:25Z 2008-09-19T10:33:25Z Genius, thanks mate!