User Anthony - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T13:46:26Zhttp://stackoverflow.com/feeds/user/5599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers/1808228#18082280Answer by Anthony for Enterprise Library Unity vs Other IoC ContainersAnthony2009-11-27T11:34:12Z2009-11-27T11:50:42Z<p>Spring has one feature that it can inject parameters to constructor or property based on the parameter name or position. This is very useful if the parameter or property is a simple type (e.g. an integer, a boolean). See <a href="http://therning.org/niklas/2006/09/spring-and-named-constructor-arguments/" rel="nofollow">the example here</a>. I don't think that this really makes up for Spring's inability to do config in code. </p>
<p>Windsor can also do this, and can do it in code not config. (correct me if I'm wrong, I'm just going via what I've heard here).</p>
<p>I would like to know if Unity can do this.</p>
http://stackoverflow.com/questions/335265/silverlight-2-0-cant-get-the-text-wrapping-behaviour-that-i-want5Silverlight 2.0 - Can't get the text wrapping behaviour that I wantAnthony2008-12-02T20:13:58Z2009-11-22T23:11:12Z
<p>I am having trouble getting Silverlight 2.0 to lay out text exactly how I want. I want text with line breaks and embedded links, with wrapping, like HTML text in a web page. </p>
<p>Here's the closest that I have come:</p>
<pre><code><UserControl x:Class="FlowPanelTest.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls"
Width="250" Height="300">
<Border BorderBrush="Black" BorderThickness="2" >
<Controls:WrapPanel>
<TextBlock x:Name="tb1" TextWrapping="Wrap">Short text. </TextBlock>
<TextBlock x:Name="tb2" TextWrapping="Wrap">A bit of text. </TextBlock>
<TextBlock x:Name="tb3" TextWrapping="Wrap">About half of a line of text.</TextBlock>
<TextBlock x:Name="tb4" TextWrapping="Wrap">More than half a line of longer text.</TextBlock>
<TextBlock x:Name="tb5" TextWrapping="Wrap">More than one line of text, so it will wrap onto the following line.</TextBlock>
</Controls:WrapPanel>
</Border>
</UserControl>
</code></pre>
<p>But the issue is that although the text blocks tb1 and tb2 will go onto the same line because there is room enough for them completely, tb3 onwards will not start on the same line as the previous block, even though it will wrap onto following lines.</p>
<p>I want each text block to start where the previous one ends, on the same line. I want to put click event handlers on some of the text. I also want paragraph breaks. Essentially I'm trying to work around the lack of FlowDocument and Hyperlink controls in Silverlight 2.0's subset of XAML.</p>
<p><hr></p>
<p>To answer the questions posed in the answers: </p>
<p><strong>Why not use runs for the non-clickable text?</strong> If I just use individual TextBlocks only on the clickable text, then those bits of text will still suffer from the wrapping problem illustrated above. And the TextBlock just before the link, and the TextBlock just after. Essentially all of it. It doesn't look like I have many opportunities for putting multiple runs in the same TextBlock.</p>
<p>Dividing the links from the other text with RegExs and loops is not the issue at all, the issue is display layout.</p>
<p><strong>Why not put each word in an individual TextBlock in a WrapPanel</strong> Aside from being an ugly hack, this does not play at all well with linebreaks - the layout is incorrect. </p>
<p>It would also make the underline style of linked text into a broken line.</p>
<p>Here's an example with each word in its own TextBlock. Try running it, note that the linebreak isn't shown in the right place at all.</p>
<pre><code><UserControl x:Class="SilverlightApplication2.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls"
Width="300" Height="300">
<Controls:WrapPanel>
<TextBlock TextWrapping="Wrap">Short1 </TextBlock>
<TextBlock TextWrapping="Wrap">Longer1 </TextBlock>
<TextBlock TextWrapping="Wrap">Longerest1 </TextBlock>
<TextBlock TextWrapping="Wrap">
<Run>Break</Run>
<LineBreak></LineBreak>
</TextBlock>
<TextBlock TextWrapping="Wrap">Short2</TextBlock>
<TextBlock TextWrapping="Wrap">Longer2</TextBlock>
<TextBlock TextWrapping="Wrap">Longerest2</TextBlock>
<TextBlock TextWrapping="Wrap">Short3</TextBlock>
<TextBlock TextWrapping="Wrap">Longer3</TextBlock>
<TextBlock TextWrapping="Wrap">Longerest3</TextBlock>
</Controls:WrapPanel>
</UserControl>
</code></pre>
<p><strong>What about The LinkLabelControl</strong> as <a href="http://www.silverlightshow.net/items/Silverlight-LinkLabel-control.aspx" rel="nofollow">here</a> and <a href="http://www.codeplex.com/SilverlightLinkLabel" rel="nofollow">here</a>. It has the same problems as the approach above, since it's much the same. Try running the sample, and make the link text longer and longer until it wraps. Note that the link starts on a new line, which it shouldn't. Make the link text even longer, so that the link text is longer than a line. Note that it doesn't wrap at all, it cuts off. This control doesn't handle line breaks and paragraph breaks either.</p>
<p><strong>Why not put the text all in runs, detect clicks on the containing TextBlock and work out which run was clicked</strong>
Runs do not have mouse events, but the containing TextBlock does. I can't find a way to check if the run is under the mouse (IsMouseOver is not present in SilverLight) or to find the bounding geometry of the run (no clip property). </p>
<p>There is <strong>VisualTreeHelper.FindElementsInHostCoordinates()</strong></p>
<p>The code below uses VisualTreeHelper.FindElementsInHostCoordinates to get the controls under the click. The output lists the TextBlock but not the Run, since a Run is not a UiElement. </p>
<pre><code>private void theText_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
// get the elements under the click
UIElement uiElementSender = sender as UIElement;
Point clickPos = e.GetPosition(uiElementSender);
var UiElementsUnderClick = VisualTreeHelper.FindElementsInHostCoordinates(clickPos, uiElementSender);
// show the controls
string outputText = "";
foreach (var uiElement in UiElementsUnderClick)
{
outputText += uiElement.GetType().ToString() + "\n";
}
this.outText.Text = outputText;
}
</code></pre>
<p><strong>Use an empty text block with a margin to space following content onto a following line</strong></p>
<p>I'm still thinking about this one.
How do you calculate the right width for a line-breaking block to force following content onto the following line? Too short and the following content will still be on the same line, at the right. Too long and the "linebreak" will be on the following line, with content after it. You would have to resize the breaks when the control is resized.</p>
<p>Some of the code for this is:</p>
<pre><code> TextBlock lineBreak = new TextBlock();
lineBreak.TextWrapping = TextWrapping.Wrap;
lineBreak.Text = " ";
// need adaptive width
lineBreak.Margin = new Thickness(0, 0, 200, 0);
</code></pre>
http://stackoverflow.com/questions/335265/silverlight-2-0-cant-get-the-text-wrapping-behaviour-that-i-want/503044#5030441Answer by Anthony for Silverlight 2.0 - Can't get the text wrapping behaviour that I wantAnthony2009-02-02T12:27:54Z2009-11-22T23:11:12Z<p>I'm going to put in some answers to my own question, based on what I have found:</p>
<p><strong>1)</strong> you can do this easily in the full-fat <strong>desktop WPF with a flow document</strong> full of paragraph, hyperlink, run and related objects. </p>
<p>This is what I am doing now, I am not trying to solve this problem in Silverlight any more.</p>
<p><strong>2)</strong> You can probably do something like this in Silverlight by building up a string of <strong>HTML and injecting it into the DOM</strong> to show it in the part of the page that's outside the Silverlight control. It sounds entirely workable, but in my opinion, too clever by half.</p>
<p><strong>3)</strong> <strong>Wait for Silverlight 4</strong> You can't do this in Silverlight 2 or 3. However it looks like the Silverlight 4 beta has a RichTextArea Control which, when readonly, supports this kind of display of flow layout with inline hyperlinks, and so acts like a cut-down version of FlowDocument and related classes from WPF. Silverlight 4 also allows Embedded Web browser control to display HTML content, if you can make it look that same across Windows versions (i.e. IE versions) and on Mac and potentially other platforms.</p>
http://stackoverflow.com/questions/233895/vstesthost-exe-has-stopped-working-cant-run-unit-tests0VSTestHost.exe has stopped working - can't run unit testsAnthony2008-10-24T14:57:37Z2009-10-29T17:19:11Z
<p>The Microsoft unit testing framework has suddenly gone on strike.</p>
<p>When I try to run tests in VS2008, I get a dialog with the message "VSTestHost.exe has stopped working".</p>
<p>I have Visual Studio Team System 2008 (version 9.0.30729.1 SP) running on Vista with all updates applied. </p>
<p>The "Problem reports and solutions" suggests that I "Upgrade to the latest retail version of Visual Studio Team Edition for Software Testers" which is not right.</p>
<p>I have tried rebooting. <br>
I have tried "devenv /resetuserdata" </p>
<p>These made no difference.</p>
<p>I'd like to go back to <a href="http://www.mbunit.com/" rel="nofollow">MbUnit</a> based on this nonsense, but that's not my choice. <br>
Any suggestions on how to fix this?</p>
http://stackoverflow.com/questions/636454/wpf-xaml-typography-capitals-seems-to-have-no-effect1WPF/XAML: Typography.Capitals seems to have no effectAnthony2009-03-11T21:27:55Z2009-10-06T02:10:12Z
<p>All of these bits of text look the same, but I am trying to get them to look different. I want small caps text. What am I missing here to get the small caps typography effect to work?</p>
<p>To reproduce this, open Visual Studio 2008, Do File|New Project, create a new Windows|WPF application, paste the mark-up below into Window1.xaml, then run it.</p>
<pre><code><Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<FlowDocumentReader>
<FlowDocument>
<Paragraph>
<Run>Some text</Run> <LineBreak />
<Run Typography.Capitals="SmallCaps">Some text</Run> <LineBreak />
<Run Typography.Capitals="AllSmallCaps">Some text</Run> <LineBreak />
<Run Typography.Capitals="PetiteCaps">Some text</Run> <LineBreak />
<Run Typography.Capitals="AllPetiteCaps">Some text</Run> <LineBreak />
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
</Grid>
</Window>
</code></pre>
<p><hr /></p>
<p>Based on the first answer, it seems that if you specify a particular font, you can get somewhere. Change the FlowDocument start tag to:</p>
<pre><code> <FlowDocument FontFamily="Palatino Linotype">
</code></pre>
<p>.. and you get SmallCaps and AllSmallCaps, but not PetiteCaps or AllPetiteCaps. So it depends on the font. But this gives rise to other questions:</p>
<ul>
<li>Why doesn't the default font (which looks a lot like Times New Roman) support these? </li>
<li>Do other widely used fonts (e.g. the local Courier New equivalent) support these? </li>
<li>Is there a list of which fonts support what? </li>
<li>What percentage of fonts will support this - most, some, or few?</li>
<li>Can you determine in code what the font supports - if this is the case, I could fake the AllSmallCaps - e.g. by converting the text to all capitals and scaling by 80%. But not SmallCaps.</li>
</ul>
http://stackoverflow.com/questions/1445180/powershell-1-is-not-capturing-batch-file-output-with-tee0PowerShell 1 is not capturing batch file output with teeAnthony2009-09-18T15:14:07Z2009-09-18T23:38:11Z
<p>PowerShell can call commandline batch files. PowerShell script output can be recorded with the "tee" command. But the tee command does not record the output of batch files inside a PowerShell script for me in PowerShell 1.</p>
<p>Try this cut-down example:</p>
<p>Make a batch file, called <strong>test.bat</strong>, with contents</p>
<pre><code>@echo hello from bat
</code></pre>
<p>Run it from PowerShell:</p>
<pre><code>PS C:\> .\test.bat | tee out.txt
</code></pre>
<p>This works - You will have an output file, containing</p>
<pre><code>hello from bat
</code></pre>
<p>Now make a PowerShell script called <strong>test.ps1</strong> that wraps the batch file, containing</p>
<pre><code>write-output "hello from PS"
.\test.bat
</code></pre>
<p>Now run this with a tee:</p>
<pre><code> .\test.ps1 | tee pout.txt
</code></pre>
<p>This does not record the output of the batch files - the output file contains only </p>
<pre><code>hello from PS
</code></pre>
<p>Whereas I expected</p>
<pre><code>hello from PS
hello from bat
</code></pre>
<p>But no batch output is captured. How can I capture the output of this PowerShell script and subordinate batch files?</p>
http://stackoverflow.com/questions/1100191/javascriptserializer-deserialize-how-to-change-field-names1JavaScriptSerializer.Deserialize - how to change field namesAnthony2009-07-08T19:49:39Z2009-08-11T16:28:10Z
<p><strong>Summary</strong>: How do I map a field name in JSON data to a field name of a .Net object when using JavaScriptSerializer.Deserialize ?</p>
<p><strong>Longer version</strong>: I have the following JSON data coming to me from a server API (Not coded in .Net)</p>
<pre><code>{"user_id":1234, "detail_level":"low"}
</code></pre>
<p>I have the following C# object for it:</p>
<pre><code>[Serializable]
public class DataObject
{
[XmlElement("user_id")]
public int UserId { get; set; }
[XmlElement("detail_level")]
public DetailLevel DetailLevel { get; set; }
}
</code></pre>
<p>Where DetailLevel is an enum with "Low" as one of the values.</p>
<p>This test fails:</p>
<pre><code>[TestMethod]
public void DataObjectSimpleParseTest()
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
DataObject dataObject = serializer.Deserialize<DataObject>(JsonData);
Assert.IsNotNull(dataObject);
Assert.AreEqual(DetailLevel.Low, dataObject.DetailLevel);
Assert.AreEqual(1234, dataObject.UserId);
}
</code></pre>
<p>And the last two asserts fail, since there is no data in those fields. If I change the JSON data to</p>
<pre><code> {"userid":1234, "detaillevel":"low"}
</code></pre>
<p>Then it passes. But I can't change the server's behaviour, and I want the client classes to have well-named properties in the C# idiom. I can't use LINQ to JSON since I want it to work outside of Silverlight. It looks like the XmlElement tags are having no effect. I don't know where I got the idea they were relevant at all, they probably aren't.</p>
<p>How do you do field name mapping in JavaScriptSerializer? Can it be done at all?</p>
http://stackoverflow.com/questions/1100191/javascriptserializer-deserialize-how-to-change-field-names/1109605#11096050Answer by Anthony for JavaScriptSerializer.Deserialize - how to change field namesAnthony2009-07-10T13:43:07Z2009-07-20T16:32:47Z<p>I took another try at it, using the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.serialization.json.datacontractjsonserializer.aspx" rel="nofollow">DataContractJsonSerializer</a> class. This solves it:</p>
<p>The code looks like this:</p>
<pre><code>using System.Runtime.Serialization;
[DataContract]
public class DataObject
{
[DataMember(Name = "user_id")]
public int UserId { get; set; }
[DataMember(Name = "detail_level")]
public string DetailLevel { get; set; }
}
</code></pre>
<p>And the test is:</p>
<pre><code>using System.Runtime.Serialization.Json;
[TestMethod]
public void DataObjectSimpleParseTest()
{
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(DataObject));
MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(JsonData));
DataObject dataObject = serializer.ReadObject(ms) as DataObject;
Assert.IsNotNull(dataObject);
Assert.AreEqual("low", dataObject.DetailLevel);
Assert.AreEqual(1234, dataObject.UserId);
}
</code></pre>
<p>The only drawback is that I had to change DetailLevel from an enum to a string - if you keep the enum type in place, the DataContractJsonSerializer expects to read a numeric value and fails. See <a href="http://stackoverflow.com/questions/794838/datacontractjsonserializer-and-enums">DataContractJsonSerializer and Enums</a> for further details. </p>
<p>In my opinion this is quite poor, especially as JavaScriptSerializer handles it correctly. This is the exception that you get trying to parse a string into an enum:</p>
<pre><code>System.Runtime.Serialization.SerializationException: There was an error deserializing the object of type DataObject. The value 'low' cannot be parsed as the type 'Int64'. --->
System.Xml.XmlException: The value 'low' cannot be parsed as the type 'Int64'. --->
System.FormatException: Input string was not in a correct format
</code></pre>
<p>And marking up the enum like this does not change this behaviour:</p>
<pre><code>[DataContract]
public enum DetailLevel
{
[EnumMember(Value = "low")]
Low,
...
}
</code></pre>
<p>This also seems to work in Silverlight.</p>
http://stackoverflow.com/questions/202912/hierarchical-data-in-linq-options-and-performance3Hierarchical data in Linq - options and performanceAnthony2008-10-14T21:24:18Z2009-07-10T16:49:26Z
<p>I have some hierarchical data - each entry has an id and a (nullable) parent entry id.
I want to retrieve all entries in the tree under a given entry. This is in a SQL Server 2005 database. I am querying it with LINQ to SQL in C# 3.5.</p>
<p>LINQ to SQL does not support <a href="http://msdn.microsoft.com/en-us/library/ms190766.aspx" rel="nofollow">Common Table Expressions</a> directly. My choices are to assemble the data in code with several LINQ queries, or to make a view on the database that surfaces a CTE. </p>
<p>Which option (or another option) do you think will perform better when data volumes get large?
Is SQL Server 2008's <a href="http://msdn.microsoft.com/en-us/library/bb677173.aspx" rel="nofollow">HierarchyId type</a> supported in Linq to SQL?</p>
http://stackoverflow.com/questions/1100241/which-of-two-ways-of-coding-an-inner-join-is-faster/1100286#11002863Answer by Anthony for Which of two ways of coding an Inner join is faster? Anthony2009-07-08T20:09:51Z2009-07-09T08:39:15Z<p>The first one looks like a pathological way to do a join to me. I would avoid it, if for no other reason that it's unusual - an experienced SQL DBA looking at it to maintain it will spend a while searching for the reason for why it's coded like that, when there is no real reason as far as what you want the query to do. It behaves more like an outer join if there's missing data.</p>
<p>The second example looks normal.</p>
<p>You should know that the old-school way of doing inner joins is like this:</p>
<pre><code>SELECT t.PKey, t.Billable,
c.LastName, m.Description, lt.TaskName,
t.StartTime, t.EndTime, t.SavedTime
FROM
dbo.TopicLog as t, Contact.dbo.Contacts as c,
Common.dbo.LMain as m, Common.dbo.LTask as lt
WHERE c.Pkey = t.Contacts_PKey and t.StartTime > '7/9/09'
AND m.PKey = t.DType
AND lt.PKey = t.TaskType
ORDER BY t.StartTime
</code></pre>
<p>And at a guess this is equivalent to the modern "inner join <em>table</em> on <em>field</em> " syntax once it has been parsed.</p>
<p>As the other answer says, if you're looking for faster queries, the first thing to do is to check that the tables' indexes are sorted out. Then look at the query execution plan.</p>
http://stackoverflow.com/questions/857639/wpf-work-out-a-width-for-a-flowdocument0WPF - Work out a width for a FlowDocumentAnthony2009-05-13T12:18:09Z2009-05-14T09:51:32Z
<p>I am working in C# and VS2008.</p>
<p>I have a WPF application containing a FlowDocument, which contains a paragraph, which contains a number of fairly short lines (i.e. Spans and LineBreaks). However the length of lines varies. I would like the FlowDocument's width to be large enough to accommodate the longest of these lines without wrapping, but no wider so as to not waste space.</p>
<p>Putting it into a grid column with Width=Auto doesn't work: the FlowDocument always consumes the max width allowed, since the FlowDocument can validly wrap to suit a number of different widths.</p>
<p>I could go through the lines as I generate them in code, and work out a width for each one, but I see no Width property on the Span or Run classes.</p>
<p>Any ideas on how to automatically or manually set a width for this document?</p>
<p><hr /></p>
<p>I used AndrewS's suggested idea and moved from a FlowDocument to a StackPanel of labels each containing a line. The XAML Markup is</p>
<pre><code><Border BorderThickness="2" Margin="2" BorderBrush="Black">
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
<StackPanel
Orientation="Vertical"
x:Name="itemsStackPanel" />
</ScrollViewer>
</Border>
</code></pre>
<p>The code creates spans and adds them as follows:</p>
<pre><code> Label itemLabel = new Label();
// pad left and right, keep close top and bottom
itemLabel.Padding = new Thickness(2,0,2,0);
itemLabel.Content = contentSpan;
this.itemsStackPanel.Children.Add(itemLabel);
</code></pre>
<p>Sizing is perfect now, and the only snag is that the font doesn't look exactly the same as the FlowDocument next to it, despite the font Family and Font Size being the same (Segoe UI, 15pt), and that the Labels look much further apart than the lines in the FlowDocument. I have asked this as <a href="http://stackoverflow.com/questions/858728/wpf-flowdocument-and-label-formatting-difference">a separate question</a></p>
http://stackoverflow.com/questions/719546/c-passing-null-to-overloaded-method-which-method-is-called/719622#7196223Answer by Anthony for C#: Passing null to overloaded method - which method is called?Anthony2009-04-05T20:26:21Z2009-04-09T11:26:26Z<p>Jon Skeet has given a comprehensive answer, but from a design point of view you shouldn't depend on corner-cases of the compiler specification. If nothing else, if you have to look up what it does before you write it, the next person to try to read it won't know what it does either. It's not maintainable.</p>
<p>Overloads are there for convenience, and two different overloads with the same name should do the same thing. If the two methods do different things, rename one or both of them.</p>
<p>It's more usual for an overloaded method to have variants with varying numbers of parameters, and for the overload with less parameters to supply sensible defaults.</p>
<p>e.g. <code>string ToString(string format, System.IFormatProvider provider)</code> has the most parameters,<br />
<code>string ToString(System.IFormatProvider provider)</code> supplies a default format, and<br />
<code>string ToString()</code> supplies a default format and provider,</p>
http://stackoverflow.com/questions/723695/asp-net-mvc-plus-silverlight/724671#7246714Answer by Anthony for ASP.NET MVC plus SilverlightAnthony2009-04-07T08:39:08Z2009-04-07T13:09:06Z<p>ASP.NET MVC <strong>and</strong> silverlight? </p>
<p>In some ways, it is an either-or choice - your data is displayed either in html/css/js generated by ASP.NET, or in Silverlight. Why mix them? I'm sure that ASP.NET MVC is a good way to deliver Silverlight, but that doesn't necessarily make it part of the same UI. </p>
<p>It's generally about reach vs. richness. A web UI with no Silverlight or Flash can reach more users, but one with Silverlight can have a richer UI. Silverlight is good fun to code in, and I have seen some wonderful apps using Silverlight's streaming video features, but if e.g. you are doing data entry and display, and you don't need the richness of Silverlight, then why not keep the reach and stay in Asp.Net? </p>
<p>If you are going to do the UI in silverlight it makes sense to do all of it in Silverlight. I have had good experiences with all the <a href="http://blogs.conchango.com/davidwynne/archive/2008/12/15/silverlight-and-the-view-viewmodel-pattern.aspx" rel="nofollow">ViewModel</a>-view-controller page flow happening inside the Silverlight app, rather than transitioning to another html page and loading a different silverlight app. It's faster and you can do fancy transition or fade-in effects in Silverlight's XAML markup.</p>
<p>Why is "reduced AJAX exposure" a desirable goal? Sites like e.g. Stackoverflow here use AJAX techniques to very good effect.</p>
<p>Stephen Walther's talk at MIX09 shows four pillars of ASP.Net as it currently stands - Forms, MVC, AJAX and Dynamic data. A lot of people are Seeing it as "moving from forms to MVC" but there are other approaches also being developed in the mix.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/59943#599436Answer by Anthony for Great programming quotesAnthony2008-09-12T20:59:56Z2009-04-06T00:14:03Z<p>Long ago, I put some quotes on the subject of "Good Programmers" <a href="http://www.everything2.com/index.pl?node%5Fid=967077" rel="nofollow">over here</a></p>
<p>My Absolute best:
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
- Brian W. Kernighan </p>
<p>"You know you've achieved perfection in design, not when you have nothing more to add, but when you have nothing more to take away."
- Antoine de Saint-Exupéry in Wind, Sand and Stars</p>
http://stackoverflow.com/questions/719573/how-to-overcome-unit-test-frustration/719675#7196750Answer by Anthony for How to overcome unit test frustration?Anthony2009-04-05T20:52:13Z2009-04-05T20:52:13Z<p>You should be able to get some quick wins going on unit testing without totally changing around what you're doing. You don't have to understand mocking frameworks and Dependency injection before you start. So I don't think it will "take months" to get any benefit.</p>
<p>Find library functions and utility classes to test, they are already fairly isolated.
For some complex functions that aren't close to the surface, I found it to be more interactive and more fun to get the functionality of the code right by calling it from the test harness rather than running the whole program - it was faster than running the program, and I could generate the whole range of inputs rather than waiting for them to crop up. Repeating the tests gave me confidence that by fixing or extending one case I wasn't breaking another. That feeling wasn't tedious at all.</p>
http://stackoverflow.com/questions/695241/how-do-i-play-the-new-mail-system-sound-in-net2How do I play the "New Mail" system sound in .Net?Anthony2009-03-29T19:52:17Z2009-04-04T07:18:59Z
<p>How do I play the "New Mail" system sound in C#? This is also called the "Notify" sound.</p>
<p>In Win32, that would be something like </p>
<pre><code>sndPlaySound('Notify', (SND_ALIAS or SND_ASYNC));
</code></pre>
<p>So how do you do that in .Net? I know that you can do </p>
<pre><code>System.Media.SystemSounds.Asterisk.Play();
</code></pre>
<p>But there's a very limited set of five sounds there - not including whatever the the user has set as the new mail sound.</p>
<p>I can find out which .wav file is being played when I get new mail and play that file, but that won't update when the user's sound scheme is changed. </p>
http://stackoverflow.com/questions/577443/tfs-wont-allow-folder-rename-claims-that-there-are-locks2TFS won't allow folder rename, claims that there are locksAnthony2009-02-23T12:11:16Z2009-04-01T10:51:55Z
<p>In visual studio 2008, I want to rename a folder due to a typo in the name.
I rename it in the solution structure. The folder and .CSProj files are now checked out, and I check in.</p>
<p>TFS comes back with "Microsoft Visual studio cannot perform the source control operation at this time because some of the files involved in the operation are locked. Please retry the operation at a later time".</p>
<p>Looking in the Source control explorer, I can confirm that the folder and the files in it are not checked out at all. The .csproj and csproj.vspscc are "edit" by one other user.</p>
<p>What's going on here?</p>
<p>If I try to undo the change, I get the same message. I have to force get the latest version before I can undo the changes. What's up with that too?</p>
<p>The eventual fix was to get all other users to check in the .csproj, then rename folders in Source control explorer. At this point it worked, though the same hadn't worked before.</p>
<p>Check-in of the rename succeeded, and references to the old names were cleaned up in following checkins.</p>
http://stackoverflow.com/questions/561029/scroll-a-wpf-flowdocumentscrollviewer-from-code/694705#6947051Answer by Anthony for Scroll a WPF FlowDocumentScrollViewer from code?Anthony2009-03-29T14:32:18Z2009-03-29T19:45:46Z<p>The other answers given here are a bit puzzling, since I don't see any public "ScrollViewer" property on the FlowDocumentScrollViewer.</p>
<p>I hacked around the problem like this. Beware that this method can return null during initialization:</p>
<pre><code>public static ScrollViewer FindScrollViewer(this FlowDocumentScrollViewer flowDocumentScrollViewer)
{
if (VisualTreeHelper.GetChildrenCount(flowDocumentScrollViewer) == 0)
{
return null;
}
// Border is the first child of first child of a ScrolldocumentViewer
DependencyObject firstChild = VisualTreeHelper.GetChild(flowDocumentScrollViewer, 0);
if (firstChild == null)
{
return null;
}
Decorator border = VisualTreeHelper.GetChild(firstChild, 0) as Decorator;
if (border == null)
{
return null;
}
return border.Child as ScrollViewer;
}
</code></pre>
http://stackoverflow.com/questions/225937/foreach-vs-somelist-foreach/226299#2262992Answer by Anthony for foreach vs someList.Foreach(){}Anthony2008-10-22T15:28:58Z2009-03-22T20:46:34Z<p>We have some code here (in VS2005 / C#2.0) where the previous engineers went out of their way to use list.ForEach( delegate(item) { foo;}); instead of foreach(item in list) {foo; }; for all the code that they wrote. e.g. a block of code for reading rows from a dataReader.</p>
<p>I still don't know exactly why they did this:</p>
<p>The drawbacks of list.ForEach() are:</p>
<ul>
<li><p>It is more verbose in VS2005 / C# 2.0. However, in C# 3, you can use the "<code>=></code>" syntax to make some nicely terse expressions.</p></li>
<li><p>It is less familiar. People who have to maintain this code will wonder why you did it that way. It took me awhile to decide that there wasn't any reason, except maybe to make the writer seem clever (the quality of the rest of the code undermined that). It was also less readable, with the "<code>})</code>" at the end of the delegate code block.</p></li>
<li><p>See also Bill Wagner's book "Effective C#: 50 Specific Ways to Improve Your C#" where he talks about why foreach is preferred to other loops like for or while loops - the main point is that you are letting the compiler decide the best way to construct the loop. If a future version of the compiler manages to use a faster technique, or to parallelise it, then you will get this for free by using foreach and rebuilding, rather than changing your code.</p></li>
</ul>
<p>I'm surprised to see that list.ForEach is slightly faster. But that's probably not a valid reason to use it throughout, that would be premature optimisation. If your application uses a database or web service that, not loop control, is almost always going to be be where the time goes.</p>
<p>I disagree that the list.foreach(delegate) version is "more functional". This might look more like how a functional language would do it, but there's no big difference in operation. </p>
<p>I don't think that <code>foreach(item in list)</code> "says exactly how you want it done" - a <code>for(int 1 =0; i < count; i++)</code> loop does that, a foreach loop leaves the choice of control up to the compiler.</p>
<p>Also, a <code>foreach(item in list)</code> construct allows you to use break or continue if you need to. But it cannot be used if you wish to alter the list (e.g. removing an item).</p>
<p>My feeling now would be, on a new project, to use foreach(item in list) for most loops in order to adhere to the common usage and for readablity, and list.Foreach() only for short blocks, when you can do something more elegantly or compactly with the C#3 "=>" operator. In cases like that, there may already be a LINQ extension method that is preferable to ForEach()</p>
http://stackoverflow.com/questions/651464/silverlight-2-want-a-variable-number-of-items-to-take-up-a-fixed-width0Silverlight 2: Want a variable number of items to take up a fixed width.Anthony2009-03-16T17:51:12Z2009-03-16T18:29:33Z
<p>The stackpanel is not co-operating. We have a fixed width, and a variable number of items to lay out left-to-right inside it.</p>
<p>We have a an items control that lays them out with a stack panel:</p>
<pre><code><ItemsControl x:Name="testItems"
HorizontalAlignment="Left"
VerticalAlignment="Top">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Stacktest:ItemControl />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</code></pre>
<p>But this doesn't size the items correctly. They are always the same size, regardless of how much space is available. If there are too many items they are cut off on the right, rather than sized so that they all fit in. Any idea how to accomplish this? I'd use a grid if the number of items was constant, but it isn't. It's typically 1-4 items.</p>
<p>It would be nice if the ItemsPanelTemplate could be a grid with a variable number of columns. But I don't know if that (or something with the same result) is possible in an ItemsPanelTemplate. </p>
<p>Is the answer to write a special subclass of panel that allocates equal width to contained items?</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424019#424019174Answer by Anthony for What's your favorite "programmer ignorance" pet peeve?Anthony2009-01-08T11:57:33Z2009-03-16T18:05:59Z<p>Complacency with duplicate code.
Two blocks of code which are initially identical are a maintenance headache. They are going to gain differences over time due to being used differently, yet there will be cases where the same fix has to be applied to both similar but non-identical parts. You can try distinguishing after the fact between a fix that should have been applied to the other copy of the code but that was overlooked, and a fix that deliberately wasn't applied to both. It will make your head hurt.</p>
<p>I did code reviews of prospective hires a while back, and realised that the main bar that most applicants needed to get above was nothing fancy - not good Object Orientation, appropriate use of Design Patterns or the like, but just plain old factoring of code into well-named, re-usable methods. I.e. avoiding the "100s of lines of repetitive code in button click handler methods" pattern. This was discovered with "<a href="http://en.wikipedia.org/wiki/Structured%5Fprogramming#History" rel="nofollow">structured programming</a>" in the early 1970s, before most of those applicants were born.</p>
http://stackoverflow.com/questions/641633/silverlight-mvvm-linking-model-and-view-model/642157#6421571Answer by Anthony for Silverlight MVVM linking model and view modelAnthony2009-03-13T10:54:44Z2009-03-13T11:20:49Z<p>In the customer example that you give, the CustomerModel contains all the information that is stored by your database (or other backend). The CustomerViewModel contains similar information if it's going to be shown on the UI (Name etc., potentially 50 other properties if you have a large class) but as uses the INotifyPropertyChanged interface to show them as properties that the View (i.e. the XAML) can bind to.</p>
<p>e.g.</p>
<pre><code>public int Name
{
get
{
return this.name;
}
set
{
if (this.name!= value)
{
this.name= value;
this.OnPropertyChanged("Name");
}
}
}
</code></pre>
<p>The ViewModel also contains other bits of UI state - Visibility flags, current Tab index, more complex bits of text built out of data in several fields, ObservableCollection<> of child items, etc. All are there to be bound to the XAML.</p>
<p>I have seen the ViewModel created from the Model as a one-time, one-way process, e.g. with a constructor: </p>
<pre><code> CustomerViewModel viewModel = new CustomerViewModel(customer);
</code></pre>
<p>or as an extension method</p>
<pre><code> CustomerViewModel viewModel = customer.ToViewModel();
</code></pre>
<p>I haven't seen any provision for updating a ViewModel for changes to the Model - the point of the ViewModel is that it's isolated from the model. It keeps a separate copy of the data. It does not propagate changes back to the model, not until you press a "save" button. So if you cancel instead, nothing in the model has changed and there's nothing to undo.</p>
<p>You may be trying too hard to keep the ViewModel up to date with the Model - most cases like save or load you can just throw away the current ViewModel and make a new one from the current state of the model. Do you need to keep the ViewModel's UI state and change the data in it? It's not a common requirement but it could be done with a method or two called when the save or load happens. </p>
<p>So there's also the assumption that this wire-up logic happens somewhere. This is why most patterns that involve <em>views</em> also involve <em>controllers</em> that are responsible for acting on commands (e.g. show a customer, save a customer) and setting up new UI state afterwards.</p>
http://stackoverflow.com/questions/639320/what-are-the-advantages-of-delegates/639465#6394651Answer by Anthony for What are the advantages of delegates?Anthony2009-03-12T16:37:59Z2009-03-12T16:56:01Z<p>I remember an early Java GUI framework that had no concept of delegates or command routing. In order to make a button that does something, you had to <em>subclass Button</em> and override the click method. You ended up with lots and lots of UI element subclasses with little bits of your application code in them.</p>
<p>The code that handles that click has to go somewhere, and in an OO language like Java or C# it has to go on a class, but delegates allow it to happen on convenient place. That often leads to having too much code doing too many different things in a form class, but that's a different issue.</p>
http://stackoverflow.com/questions/638124/cron-like-system-for-windows/638321#6383211Answer by Anthony for Cron-like system for Windows?Anthony2009-03-12T12:02:32Z2009-03-12T16:32:22Z<p>If you want a script to "trigger Win32 COM objects and/or executables", "trigger .NET COM objects and/or .NET executables", log failures and notify of failures by email, that sounds to me like a job for <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">PowerShell</a>.</p>
<p>PowerShell doesn't have logging and emailing done for you, rather it's a programming language where you can log or send email (or whatever) fairly easily.</p>
<p>I have scheduled PowerShell scripts to run using the "at" / "Task Scheduler" service, with success. It's a good combination.</p>
http://stackoverflow.com/questions/171156/best-practices-always-return-a-never-a/624389#6243891Answer by Anthony for Best Practices: Always return a ____, never a ____Anthony2009-03-08T21:59:02Z2009-03-12T16:02:43Z<p>Returning empty array/lists rather than nulls makes sense, it allows the calling code to be simpler – no special-case code to deal with the nulls.</p>
<p>I'm not sure what you mean by "never return an instance" – are you saying always a Array/List/Iterator rather than a single object? That would be an odd and pointless practice. </p>
<p>The other interpretation, returning an interface over a concrete type (e.g. returning IList<Foo> or IEnumerable<Foo> over List<Foo>) is a good practice, but I wouldn't call it a "must" and "always" practice.</p>
<p>As for not using booleans, this wrong idea is debated at <a href="http://stackoverflow.com/questions/135845/are-booleans-as-method-arguments-unacceptable/136637#136637">Are booleans as method arguments unacceptable?</a></p>
http://stackoverflow.com/questions/193982/what-is-your-best-funniest-annoying-performance-tuning-experience/194172#1941729Answer by Anthony for What is your best/funniest/annoying performance tuning experience?Anthony2008-10-11T15:06:44Z2009-03-10T14:55:33Z<p>Things that work fine in the simple or average case can really kill performance in a large case. Optimise for large inputs since small inputs will most likely run quickly anyway, just because they're small. </p>
<p>I saw this in a Delphi program for mine that parsed its input and turned it into a list of tokens, then processed it one token at a time, first token to last token. When the token was processed, it was removed from the front of the list and discarded. </p>
<p>The time to remove items from the list came to take up 90% of the run time for very large inputs, since removing the first item in the list resulted in all items after it being moved up by one (i.e. a large memcpy). This is just the way that Delphi's TList class works - internally, it keeps and manages a block of memory. The overhead of removing the first item and moving the rest up by one wasn't noticeable on small inputs, but it dominated runtime for very large ones.</p>
<p>I replaced this remove-first-item-from-list logic with a "current item index" that was incremented when the token was processed; and after processing was complete I freed the list all in one go. </p>
<p>The result was as predicted - the program ran ten times as fast for large input. Run time for small and average inputs was unchanged.</p>
http://stackoverflow.com/questions/610396/languages-faster-than-c/610455#6104551Answer by Anthony for Languages faster than C++Anthony2009-03-04T13:05:02Z2009-03-04T13:11:08Z<p>It's usually the algorithm not the language that determines the performance ballpark that you will end up in.</p>
<p>Within that ballpark, optimising compilers can usually produce better code than most assembly coders.</p>
<p><a href="http://en.wikipedia.org/wiki/Optimization%5F%28computer%5Fscience%29" rel="nofollow">Premature optimisation is the root of all evil</a></p>
<p>This may be the "common knowledge" that everyone can parrot, but I submit that's probably because it's correct. I await concrete evidence to the contrary.</p>
http://stackoverflow.com/questions/602471/what-are-the-reasons-for-withholding-code-from-a-client/603073#6030732Answer by Anthony for What are the reasons for withholding code from a client?Anthony2009-03-02T16:53:59Z2009-03-02T16:59:49Z<p>If he "has not paid any <strong>extra</strong> money for the source" (emphasis added), then he has paid you money. If not for the source, what exactly has he paid you for?</p>
<p>Going into the relationship without any paperwork is a problem for both of you, but if I asked someone to develop software for me, I would expect to have the source, and I'd be upfront about that.</p>
<p>A custom-made application without the source is worth a lot less, may be close to worthless, since it's not maintainable. Of course the original coder is the preferred supplier for further work, but what if something goes wrong with that?</p>
<p>it's common that the person who pays for the work owns the source (be that your employer or your employer's client). Also popular is that you both have some rights to it. Cases were the user owns a licence to use the software, but not the source at all are more common with shrink-wrapped software - e.g. Windows Xp, MS Word, computer games, and is uncommon with software made to order.</p>
http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil/602774#6027743Answer by Anthony for Is a debugger the mother of all evil?Anthony2009-03-02T15:34:43Z2009-03-02T15:41:57Z<p>Define "find a bug"? In complex systems, the path from "someone notices that something is going wrong" (when a user or tester or test case finds a bug) to "when the engineer fixing it works out exactly why it went wrong" (when the coder finds the bug) can be a long process, and can be the hardest and longest part of fixing the bug.</p>
<p>If a debugger gives you the insight that you need to go through this process faster, then it's a good tool. In some cases you can get by without it, but that's no reason to be dogmatically against it. Debuggers help you understand what's really going on. But if you always need a debugger to understand what's going on, your code could suck and your colleague would have a valid point.</p>
<p>Unit test can be a good compliment to the debugger rather than an alternative to it. The right unit test can get you to your breakpoint near a crash quickly and consistently, but running the whole program to exhibit the bug might be a long manual process.</p>
<p>There's often more than one fix to the bug. often a number of things have to go wrong or pass undetected before the software fails. Making a single change to "fix the bug" may be adequate, but often you can do much better, using the bug as data on the weak spots of your software.</p>
<p>So when the coder finally finds the bug, there are a number of pro-active things (like those that your colleague suggests) that they can do before fixing it, such as:</p>
<ul>
<li>Put test cases in place that exhibit the bug, to detect if the bug recurs.</li>
<li>Think about similar inputs or related bugs that could occur.</li>
<li>Put internal tests (asserts or exception throws) in place to catch invalid conditions earlier or give better information if it happens again.</li>
<li>Review the buggy code. Where there's one bug there could be more.</li>
<li>Refactor for clarity</li>
<li>Better internal documentation, e.g. if there was a misunderstanding of how to use a piece of code.</li>
</ul>
http://stackoverflow.com/questions/602015/community-site-with-blogs-and-forums-oxite-dnn-or-cs/602238#6022380Answer by Anthony for Community Site with Blogs and forums - Oxite, DNN or CS?Anthony2009-03-02T12:55:52Z2009-03-02T15:40:59Z<p>Oxite is quite new, and as far as I know doesn't support forums, so out of the box it's not going to do what you need. There are other, more mature blog engines in .Net <a href="http://www.codeplex.com/oxite" rel="nofollow">listed on the oxite home page</a></p>
<p>When you say "the front end will be a mixture of ASP.NET and Silverlight" you seem to be indicating that you're going to be writing your own front end and want a starting point? How much of your own coding are you wanting to do?</p>
<p>But Oxite is open source, and is now getting towards the point where it can serve as a sample of best practices in ASP.NET MVC, i.e. cutting-edge stuff that other blog projects probably won't have. if it has benefit for you, that will be it.</p>
<p><a href="http://en.wikipedia.org/wiki/Community%5FServer" rel="nofollow">Community server</a> looks a lot more complete, but I have no experience on how usable it is. It's not clear if this is open-source or not, but it looks like you will need to pay for the larger editions. Are you willing to do this?</p>
<p>DNN means DotNetNuke? It's free like Oxite, and full-featured like Community server. I don't know much more about it.</p>
http://stackoverflow.com/questions/355576/wcf-how-to-get-binding-object-from-configuration/370785#370785Comment by Anthony on WCF: How to get Binding object from configurationAnthony2009-10-15T12:51:03Z2009-10-15T12:51:03ZOnly if you know what kind of binding you are going to use, e.g. WSHttpBinding or NetTcpBiding. You lose the flexibility to change the kind of biding at runtime.http://stackoverflow.com/questions/43249/t-sql-stored-procedure-that-accepts-multiple-id-values/43260#43260Comment by Anthony on T-SQL stored procedure that accepts multiple Id valuesAnthony2009-10-08T14:22:57Z2009-10-08T14:22:57ZI'm not sure that it's "prone to SQL injection attacks" unless the stored proc is callable directly from untrusted clients, in which case you have bigger problems. The service layer code should generate the @DepartmentIds string from strongly typed data (e.g. int[] departmentIds), in which case you'll be fine.http://stackoverflow.com/questions/454205/project-hosting-for-multiple-pet-projects/454210#454210Comment by Anthony on Project hosting for multiple pet projects?Anthony2009-09-22T14:06:37Z2009-09-22T14:06:37ZWhy would you "not want a full blown version control system" ?
If you are a professional software developer, you will already know how to use one for simple cases (no branches, no 3-way merges)
And you can get them fee (svn, git)
There's no reason not to use the right tool for the jobhttp://stackoverflow.com/questions/1445180/powershell-1-is-not-capturing-batch-file-output-with-tee/1445324#1445324Comment by Anthony on PowerShell 1 is not capturing batch file output with teeAnthony2009-09-21T11:11:12Z2009-09-21T11:11:12ZThe workaround works for me too. We have a winner!
So this must be something to do with the difference between write-console and write-output.http://stackoverflow.com/questions/1445180/powershell-1-is-not-capturing-batch-file-output-with-teeComment by Anthony on PowerShell 1 is not capturing batch file output with teeAnthony2009-09-21T11:07:16Z2009-09-21T11:07:16ZI made it a community wiki since last time I was on this site, people asked for that - the point being that they can edit it. The points difference isn't something that I know about, those rules may have changed in the meantime. Isn't that a secondary concern though? Is it something that I can change?http://stackoverflow.com/questions/1445180/powershell-1-is-not-capturing-batch-file-output-with-tee/1445324#1445324Comment by Anthony on PowerShell 1 is not capturing batch file output with teeAnthony2009-09-18T15:40:56Z2009-09-18T15:40:56ZI have updated for your comments - used "@" in batch file, made it clear that this is PowerShell 1http://stackoverflow.com/questions/1445180/powershell-1-is-not-capturing-batch-file-output-with-tee/1445324#1445324Comment by Anthony on PowerShell 1 is not capturing batch file output with teeAnthony2009-09-18T15:37:48Z2009-09-18T15:37:48ZI am using PowerShell 1http://stackoverflow.com/questions/4661/how-do-i-use-more-than-one-openid/4777#4777Comment by Anthony on How do I use more than one OpenID?Anthony2009-07-08T12:53:24Z2009-07-08T12:53:24Zthat's great ... but how does this work when you have an existing non-delegated openId in use here in Stackoverflow, and want to move?http://stackoverflow.com/questions/50327/wpf-datepicker-what-is-the-best/387588#387588Comment by Anthony on WPF DatePicker: What is the best?Anthony2009-06-18T10:06:38Z2009-06-18T10:06:38ZI'm using this one - from a brief try it seems to do what I want. And it's the official toolkit, so I'm going with it.http://stackoverflow.com/questions/50327/wpf-datepicker-what-is-the-bestComment by Anthony on WPF DatePicker: What is the best?Anthony2009-06-14T21:46:55Z2009-06-14T21:46:55ZWhat's really odd is, why isn't there one in the default control toolkit?http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736Comment by Anthony on How to implement WiX installer upgrade?Anthony2009-04-07T08:58:38Z2009-04-07T08:58:38ZAlso, what exactly does "Change the product ID to *" do? Does it generate a new product Id each time? Are there consequences to your product not having a fixed Id any more? - it sounds like overkill.
http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736Comment by Anthony on How to implement WiX installer upgrade?Anthony2009-04-06T21:29:09Z2009-04-06T21:29:09ZAlso you may have to tweak the UpgradeVersion Min and max - e.g. If your current version is less than 1.0http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736Comment by Anthony on How to implement WiX installer upgrade?Anthony2009-04-06T21:27:09Z2009-04-06T21:27:09ZHm, I suspect that I shouldn't use that particular GUID in the "Upgrade Id=", but will have to match it so something else. But what?http://stackoverflow.com/questions/682805/how-can-i-detect-net-3-5-in-wix/682845#682845Comment by Anthony on How can I detect .net 3.5 in WiX?Anthony2009-04-06T10:16:02Z2009-04-06T10:16:02ZDepends what you search for. Search for "wix prerequisite" gets nothing worthwhile, search for "wix detect" gets this. And that's where I stopped searching.http://stackoverflow.com/questions/254197/how-can-i-get-the-active-screen-dimensions/254241#254241Comment by Anthony on How can I get the active screen dimensions?Anthony2009-04-03T08:42:04Z2009-04-03T08:42:04ZThis works to put a window on the right-hand edge:
var bounds = this.GetScreen().WorkingArea;
this.Left = bounds.Right - this.Width;
But it requires references to System.Windows.Forms and System.Drawing, which is not ideal.