User Jeff Yates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:55:32Z http://stackoverflow.com/feeds/user/23234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0 11 What are the biggest gotchas in Silverlight 2.0? Jeff Yates 2009-01-26T23:28:04Z 2009-12-15T22:25:36Z <p>I've been working in Silverlight 2.0 recently and I've slowly been discovering that as simple as it can be to develop, there are one or two annoying gotchas that lurk in the shadows.</p> <p>Considering how difficult some of these have been to track down for me, I thought it might be useful to list them here on SO for others to benefit from. I'm sure the ones I have encountered are nothing compared to the experience of others and I'd like to try and avoid any other nasty or time consuming surprises.</p> <p>So, what have you got?</p> http://stackoverflow.com/questions/1902457/all-users-path/1902496#1902496 4 Answer by Jeff Yates for All users path? Jeff Yates 2009-12-14T18:07:52Z 2009-12-14T18:07:52Z <p>Use <a href="http://msdn.microsoft.com/en-us/library/ms724265%28VS.85%29.aspx" rel="nofollow"><code>ExpandEnvironmentStrings</code></a> to expand the <code>%ALLUSERSPROFILE%</code> string. This method is part of <code>Kernel32.dll</code>.</p> http://stackoverflow.com/questions/1012948/using-system-windows-forms-timer-start-stop-versus-enabled-true-false/1013320#1013320 3 Answer by Jeff Yates for Using System.Windows.Forms.Timer.Start()/Stop() versus Enabled = true/false Jeff Yates 2009-06-18T15:21:10Z 2009-12-08T14:46:26Z <p>As stated by both <a href="http://stackoverflow.com/questions/1012948/using-system-windows-forms-timer-start-stop-versus-enabled-true-false/1012981#1012981">BFree</a> and <a href="http://stackoverflow.com/questions/1012948/using-system-windows-forms-timer-start-stop-versus-enabled-true-false/1012979#1012979">James</a>, there is no difference in <a href="http://msdn.microsoft.com/en-us/library/system.timers.timer.start%28VS.71%29.aspx" rel="nofollow"><code>Start</code></a><code>\</code><a href="http://msdn.microsoft.com/en-us/library/system.timers.timer.stop%28VS.71%29.aspx" rel="nofollow"><code>Stop</code></a> versus <a href="http://msdn.microsoft.com/en-us/library/system.timers.timer.enabled%28VS.71%29.aspx" rel="nofollow">Enabled</a> with regards to functionality. However, the decision on which to use should be based on context and your own coding style guidelines. It depends on how you want a reader of your code to interpret what you've written.</p> <p>For example, if you want them to see what you're doing as starting an operation and stopping that operation, you probably want to use <code>Start/Stop</code>. However, if you want to give the impression that you are enabling the accessibility or functionality of a feature then using <code>Enabled</code> and <code>true/false</code> is a more natural fit.</p> <p>I don't think a consensus is required on just using one or the other, you really have to decide based on the needs of your code and its maintenance.</p> http://stackoverflow.com/questions/1860288/c-reading-file-and-pulling-out-specific-lines/1860313#1860313 0 Answer by Jeff Yates for C# Reading file and pulling out specific lines. Jeff Yates 2009-12-07T14:30:28Z 2009-12-07T14:30:28Z <p>I would use a combination of <a href="http://msdn.microsoft.com/en-us/library/system.io.streamreader.readline.aspx" rel="nofollow"><code>StreamReader.ReadLine</code></a> and <a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.aspx" rel="nofollow"><code>RegEx</code></a> to read each line and extract the appropriate information.</p> http://stackoverflow.com/questions/1833830/timespan-parse-time-format-hhmmss/1833868#1833868 0 Answer by Jeff Yates for TimeSpan.Parse time format hhmmss Jeff Yates 2009-12-02T16:01:39Z 2009-12-02T16:01:39Z <p>If you can guarantee that the string will always be hhmmss, you could do something like:</p> <pre><code>TimeSpan.Parse( timeString.SubString(0, 2) + ":" + timeString.Substring(2, 2) + ":" + timeString.Substring(4, 2))) </code></pre> http://stackoverflow.com/questions/1833747/clickable-url-in-a-winform-message-box/1833785#1833785 2 Answer by Jeff Yates for Clickable URL in a Winform Message Box? Jeff Yates 2009-12-02T15:51:03Z 2009-12-02T15:51:03Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.linklabel.aspx" rel="nofollow"><code>LinkLabel</code></a> control on your own <code>Form</code> for this. Unfortunately, the <code>MessageBox</code> form cannot be customized in this way, so you would need to create your own <code>Form</code> to mimic the <code>MessageBox</code> for your purposes.</p> http://stackoverflow.com/questions/230588/problem-sorting-lists-using-delegates/230597#230597 2 Answer by Jeff Yates for Problem sorting lists using delegates Jeff Yates 2008-10-23T17:20:11Z 2009-12-02T15:05:09Z <p>The Sort doesn't take a binary predicate, it takes a <code>Comparison&lt;T&gt;</code> delegate which returns an <code>int</code> not a <code>bool</code>.</p> <p>The return values are <code>0</code> for when the items are equal, <code>&lt;0</code> for when the first item is less than the second, and <code>&gt;0</code> for when the first item is greater than the second.</p> http://stackoverflow.com/questions/1820129/when-and-why-is-xml-preferable-to-csv/1820178#1820178 1 Answer by Jeff Yates for When and Why is XML preferable to CSV? Jeff Yates 2009-11-30T14:35:58Z 2009-11-30T14:35:58Z <p>XML provides a way of tagging your data with metadata (provided by the tag names and attribute names), whereas CSV does not. Couple this with the ability to define structured hierarchies and it makes XML easier to understand when provided with just the data, whereas CSV would require an accompanying tool or document to describe how each value is interpreted.</p> http://stackoverflow.com/questions/1772165/internet-explorer-developer-tool-with-silverlight-application/1772253#1772253 0 Answer by Jeff Yates for Internet Explorer Developer Tool with Silverlight application. Jeff Yates 2009-11-20T17:57:38Z 2009-11-20T17:57:38Z <p>The elements on your Silverlight application are not HTML elements, they are embedded in your Silverlight application, so the developer tool cannot see them.</p> http://stackoverflow.com/questions/1772156/linq-to-xml-how-to-clone-nodes-while-retaining-annotations/1772230#1772230 0 Answer by Jeff Yates for LINQ to XML: How to clone nodes while retaining annotations? Jeff Yates 2009-11-20T17:55:07Z 2009-11-20T17:55:07Z <p>You could save it into a memory stream and then reload it into a new instance of <code>XDocument</code>.</p> http://stackoverflow.com/questions/1772155/how-can-i-test-the-silverlight-install-process/1772206#1772206 0 Answer by Jeff Yates for How Can I Test the Silverlight Install Process Jeff Yates 2009-11-20T17:52:32Z 2009-11-20T17:52:32Z <p>You could set up a <a href="http://www.microsoft.com/downloadS/details.aspx?FamilyID=04d26402-3199-48a3-afa2-2dc0b40a73b6&amp;displaylang=en" rel="nofollow">Virtual PC</a> or <a href="http://www.virtualbox.org/" rel="nofollow">Virtual Box</a> instance and keep resetting it to a "before Silverlight was installed" snapshot.</p> http://stackoverflow.com/questions/1751693/debugging-silverlight-and-silverlight-unit-tests/1751802#1751802 1 Answer by Jeff Yates for Debugging Silverlight and Silverlight Unit Tests Jeff Yates 2009-11-17T21:08:40Z 2009-11-17T21:15:22Z <h3>Debugging Silverlight</h3> <p>Debugging in multi-process browsers can be a pain. You often have to manually attach the debugger once you have started debugging as the process started by Visual Studio that it then tries to debug is not the process that the Silverlight plug-in is running under.</p> <p>Just use <code>Debug--&gt;Attach to process...</code> to do this after you've started the application in debug mode. I have never had failure to debug using this approach.</p> <p>I also <a href="http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/513743#513743">posted here</a> about this multi-process browser Silverlight debugging issue.</p> <p>NOTE: Multi-process browsers include Chrome, IE8, and Firefox 3.5, although IE8 does something funky to work around the multi-process problem when it's working.</p> <h3>Reporting Feedback</h3> <p>I haven't yet tried this, but <a href="http://karlshifflett.wordpress.com/2009/06/08/glimpse-for-silverlight-viewing-exceptions-and-binding-errors/" rel="nofollow">here is a useful blog</a> on providing crash handling for Silverlight. It may give you some insight as to how to manipulate your HTML page to provide trace-style logging when unit testing.</p> http://stackoverflow.com/questions/1729889/simple-vb-or-c-questions-for-an-interview/1729977#1729977 1 Answer by Jeff Yates for Simple VB or C# questions for an interview? Jeff Yates 2009-11-13T15:34:11Z 2009-11-13T15:34:11Z <p>I think it is far more important to find out how the candidate thinks than to test their specific knowledge on a topic. For example, they may know C# but do they have the aptitude to learn VB.NET, or F#, or some other language. What makes them tick? Do they get excited by new framework features? What do they do for hobbies? How do they tackle problems? These things are far more important than knowing a language inside and out, especially when even the best developers still rely on the compiler to tell them they screwed up.</p> http://stackoverflow.com/questions/1675732/programmatic-way-to-determine-if-code-is-running-in-silverlight/1675764#1675764 3 Answer by Jeff Yates for Programmatic way to determine if code is running in Silverlight? Jeff Yates 2009-11-04T18:32:11Z 2009-11-04T18:57:31Z <p>Considering that different compilers are used to create Silverlight and non-Silverlight assemblies, you could use compiler directives and conditionally compile your code rather than detect the difference at runtime. Just define <code>SILVERLIGHT</code> (or some other define) for the Silverlight build and then have:</p> <pre><code>#if SILVERLIGHT // Do silverlight stuff #else // Do other stuff #endif </code></pre> <p>You could use the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.conditionalattribute.aspx" rel="nofollow"><code>ConditionalAttribute</code></a> as well with this approach.</p> http://stackoverflow.com/questions/1675510/haskell-parsec-compile-error/1675609#1675609 1 Answer by Jeff Yates for Haskell Parsec compile error Jeff Yates 2009-11-04T18:02:45Z 2009-11-04T18:10:22Z <p>According to <a href="http://legacy.cs.uu.nl/daan/download/parsec/parsec.pdf" rel="nofollow">the Parsec docs</a> (section 1.2.1 Compiling with GHC), you should do this:</p> <blockquote> <p>When your linking the files together, you need to tell GHC where it can find libraries (-L) and to link with the Parsec library too (-l):<br> <strong><code>ghc -o myprogram myfile1.o myfile2.o -Lc:\parsec -lparsec</code></strong></p> </blockquote> <p><a href="http://www.haskell.org/ghc/docs/6.10-latest/html/users%5Fguide/using-ghc.html" rel="nofollow">This documentation</a> on the Haskell compiler may help.</p> http://stackoverflow.com/questions/1667764/what-common-routines-do-you-put-in-your-program-cs-for-c/1667916#1667916 1 Answer by Jeff Yates for What common routines do you put in your Program.cs for C# Jeff Yates 2009-11-03T15:08:52Z 2009-11-03T15:08:52Z <p>We usually use main for basic command-line parsing, crash handling setup, license checking, and creation of main form (assuming it's a windows application and not a console application).</p> <p>However, most of that functionality is handled by other objects that main just instantiates and calls.</p> http://stackoverflow.com/questions/1478852/is-there-a-way-to-view-net-framework-library-source-code-online/1478939#1478939 4 Answer by Jeff Yates for Is there a way to view .NET Framework library source code online? Jeff Yates 2009-09-25T18:39:56Z 2009-11-03T13:43:54Z <p>There are several ways to look at source code from the .NET framework and the BCL (or approximations to it). All of them can be used independently of Visual Studio (with varying degrees of difficulty), if you want.</p> <ul> <li><p>Enable <a href="http://www.google.com/url?q=http%3A//referencesource.microsoft.com/&amp;sa=U&amp;ei=KA69StvgGIOAlgfb5NiHBQ&amp;ct=res&amp;cd=5&amp;sig2=u6yGjWI9gBAOGlrE5Yt2Eg&amp;usg=AFQjCNGM7Zb8XpKLIVWj2EGMwrTrZOLe8w" rel="nofollow">reference source</a> debugging in Visual Studio or use <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2008/02/06/download-all-the-net-reference-source-code-at-once-with-net-mass-downloader.aspx" rel="nofollow">a cunning app to download all the reference source</a>.</p></li> <li><p>Download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=8C09FD61-3F26-4555-AE17-3121B4F51D4D&amp;displaylang=en" rel="nofollow">Shared Source Common Language Infrastructure 2.0 Release</a> from Microsoft containing the BCL implementation.</p></li> <li><p>Use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector from Red Gate</a>. <br/>This approach doesn't actually show you the original source, it shows you an interpretation of the IL in a language of your choice.</p></li> </ul> http://stackoverflow.com/questions/615791/how-do-i-hide-some-of-the-default-control-properties-at-design-time-c/615817#615817 6 Answer by Jeff Yates for How do I hide some of the default control properties at design-time (C#)? Jeff Yates 2009-03-05T17:46:30Z 2009-10-29T12:40:50Z <p>You could either override them (if they can be overriden) and apply the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.browsableattribute.aspx" rel="nofollow"><code>Browsable</code></a> attribute, specifying <code>false</code>, or create a new version of the property and apply the same attribute (this second approach doesn't always appear to work so YMMV).</p> <p>Also, you can use a custom <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow"><code>TypeConverter</code></a> for your type and override the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.getproperties.aspx" rel="nofollow"><code>GetProperties</code></a> method to control what properties get displayed for your type. This approach is more robust to the underlying base classes changing but can take more effort, depending on what you want to achieve.</p> <p>I often use a combination of the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.browsableattribute.aspx" rel="nofollow"><code>Browsable</code></a> attribute and a custom <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.typeconverter.aspx" rel="nofollow"><code>TypeConverter</code></a>.</p> http://stackoverflow.com/questions/1632137/can-anyone-answer-why-silverlights-xaml-code-is-so-ugly/1632233#1632233 3 Answer by Jeff Yates for Can anyone answer why Silverlights XAML code is so ugly? Jeff Yates 2009-10-27T16:55:35Z 2009-10-27T16:55:35Z <p>XML is a standard predominantly devised for data. XAML uses XML to provide a declarative programming language that is clearly not entirely data. Because such a programming language requires some complex constructs, it stretches the XML format to its limits and doesn't always result in a pleasant experience (although improvements in development tools should ease this somewhat).</p> <p>It should be noted that <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.label%28VS.95%29.aspx" rel="nofollow">Label</a> is actually in the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.label%28VS.95%29.aspx" rel="nofollow">System.Windows.Controls</a> namespace (not System.Windows.Controls.Data.Input), however, it is in the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.label%28VS.95%29.aspx" rel="nofollow">System.Windows.Controls.Data.Input.dll</a> assembly - assemblies and namespaces are not the same thing. This is most likely to allow finer control of what your application needs to include when being distributed (don't include assemblies you don't use). That said, I don't believe you can level complaints at Microsoft about XAML with regards to the placement of controls in namespaces, this is somewhat down to design guidelines for the .NET framework rather than XAML-specific. However, the groupings are usually logical and if you find a "control" in a namespace that doesn't seem right, it probably isn't what you're looking for.</p> <p>I must agree that XAML is not the most pleasant of things to work with and it is very difficult to track down errors. However, it is performing a complex role. Hopefully, improvements in editors and other development tools, as well as run-time exception details will make the experience more pleasant in future.</p> http://stackoverflow.com/questions/1626516/visual-studio-2010-beta-2-and-wix/1626609#1626609 3 Answer by Jeff Yates for Visual Studio 2010 beta 2 and WiX? Jeff Yates 2009-10-26T18:44:54Z 2009-10-26T18:44:54Z <p>Try installing the latest build of WiX 3.5. This is the version that supports VS2010. I don't know if it has been updated for the beta2 release, but there was <a href="http://wix.sourceforge.net/releases/3.5.1023.0/" rel="nofollow">a new one built 3 days ago</a>. </p> http://stackoverflow.com/questions/516981/what-features-do-you-wish-were-part-of-c/517093#517093 0 Answer by Jeff Yates for What features do you wish were part of C#? Jeff Yates 2009-02-05T18:05:29Z 2009-10-26T18:34:37Z <p>Conditional/filtered event handlers:</p> <pre><code>class A { public event EventHandler MyEvent; } class B { int x; A classA = new A(); public ClassB() { classA.MyEvent += new EventHandler(OnMyEvent).Where(x &gt; 5); } } </code></pre> <p>This would mean I only get events when the filter is matched. I could also envisage using other LINQ-style operators such as First() where you only get the event fired once and then never again.</p> <p>For example, instead of writing:</p> <pre><code> private void OnMyEvent(object sender, EventArgs e) { if (x &gt; 5) { // Do stuff. } } </code></pre> <p>I can specify the condition where the handler is attached to the event. The compiler would insert a new handler behind the scenes with the condition applied based on the method I define. This way, i can define a single handler that is used with different conditions on multiple events rather than needing one handler per event just because I need a different condition or filter in there. There wouldn't be a need for any new CLR support - this would just be syntax changes.</p> <p>I want language support for <a href="http://blogs.msdn.com/clrteam/archive/2009/02/05/catch-rethrow-and-filters-why-you-should-care.aspx" rel="nofollow">exception filters</a> as well.</p> <h3>Update</h3> <p>I believe my "filtered events" concept can be created through the use of .NET 4 and the <a href="http://themechanicalbride.blogspot.com/2009/07/introducing-rx-linq-to-events.html" rel="nofollow">Rx framework</a>.</p> http://stackoverflow.com/questions/512644/how-do-i-include-a-custom-row-at-the-end-of-a-datagrid-in-silverlight 1 How do I include a custom row at the end of a DataGrid in Silverlight? Jeff Yates 2009-02-04T18:25:22Z 2009-10-21T08:50:03Z <p>I have a <code>DataGrid</code> in my Silverlight application and it works nicely, adding a row or removing a row as I manipulate the <code>ItemsSource</code> collection. However, I want there to be an additional row, or control that always appears after the last data row.</p> <p>I can get the additional control to appear after the last row using a <code>ControlTemplate</code> and setting the RowsPresenter row to Auto height, but this means the rows never scroll when the render area gets too small. However, if I change the RowsPresenter row height to Star, the rows scroll but the additional control appears pinned to the bottom of the data grid rather than to the bottom of the last row.</p> <p>Is there a way I can have the Star height behavior on the RowsPresenter while still having my control appear the way I want?</p> <p>My current thinking is that I need to somehow use the LoadingRow event to find the position of the last row and use a Canvas or similar to place my control in the appropriate location.</p> <p>Thoughts?</p> <p>Thanks in advance for the help.</p> <h3>Update</h3> <p>I also asked a question (and ultimately answered) about pinning one control below another, which could be used to fix this issue if you don't want the custom row to scroll with the rest of the rows (such as in my case, where I wanted another datagrid header row to show totals and float over the other rows).</p> <p><a href="http://stackoverflow.com/questions/849768/how-do-i-pin-one-control-below-another-in-silverlight">http://stackoverflow.com/questions/849768/how-do-i-pin-one-control-below-another-in-silverlight</a></p> http://stackoverflow.com/questions/1567078/rebranding-application-resources-in-net-2-0/1567225#1567225 2 Answer by Jeff Yates for Rebranding Application Resources in .NET 2.0 Jeff Yates 2009-10-14T15:51:13Z 2009-10-14T15:51:13Z <p>We found on our project that the simplest route was to have the branding in its own DLL which is then loaded dynamically through reflection. If required, there are two obvious approaches to localizing any branding:</p> <ol> <li>Replace the branding DLL with another that has been localized</li> <li>Use the satellite assembly technique supported by .NET</li> </ol> <p>Option 1 is much easier, in my opinion but both are feasible. Of course, there are other approaches to localization.</p> http://stackoverflow.com/questions/1554779/is-c-a-versatile-language/1554812#1554812 1 Answer by Jeff Yates for Is C# a versatile language? Jeff Yates 2009-10-12T14:10:28Z 2009-10-12T14:10:28Z <p>Yes</p> <p>It is cross-platform (see .NET, .NET compact, .NET embedded, Mono, Mono for iPhone, Microsoft Auto, etc.).</p> <p>It provides features to allow interactions with the user.</p> <p>It can do big things.</p> http://stackoverflow.com/questions/1537713/what-is-the-second-meaning-of-a-single-ampersand-in-c/1537739#1537739 4 Answer by Jeff Yates for What is the second meaning of a single ampersand in C#? Jeff Yates 2009-10-08T13:15:55Z 2009-10-08T13:32:35Z <p>The ampersand represents a bitwise AND operation. A bitwise operator returns the result of a comparison between each corresponding bit in the two operands.</p> <p>For example, if x is 0110 and y is 1010, then a bitwise AND of x and y (x &amp; y) results in 0010.</p> http://stackoverflow.com/questions/1537394/problem-with-toolstripseparator/1537497#1537497 0 Answer by Jeff Yates for problem with ToolStripSeparator Jeff Yates 2009-10-08T12:26:14Z 2009-10-08T12:26:14Z <p>If you are using .NET 3.5, you could use the <a href="http://msdn.microsoft.com/en-us/library/bb360913.aspx" rel="nofollow"><code>OfType</code></a> extension method as follows.</p> <pre><code>foreach (var item in tditems.Items.OfType&lt;ToolStripMenuItem&gt;()) { // something here } </code></pre> http://stackoverflow.com/questions/1537417/prevent-height-sizing-at-design-time/1537449#1537449 2 Answer by Jeff Yates for prevent height sizing at design time Jeff Yates 2009-10-08T12:15:58Z 2009-10-08T12:15:58Z <p>You can override the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.setboundscore.aspx" rel="nofollow"><code>SetBoundsCore</code></a> method and disallow changes to height by changing the <code>height</code> value before calling the base class implementation.</p> <pre><code>private const int FixedHeightIWantToKeep = 100; protected override void SetBoundsCore( int x, int y, int width, int height, BoundsSpecified specified) { // Fixes height at 100 (or whatever fixed height is set to). height = this.FixedHeightIWantToKeep; base.SetBoundsCore(x, y, width, height, specified); } </code></pre> http://stackoverflow.com/questions/1537373/collectionviewsource-in-silverlight/1537444#1537444 0 Answer by Jeff Yates for CollectionViewSource in silverlight Jeff Yates 2009-10-08T12:14:29Z 2009-10-08T12:14:29Z <p>There is not a direct 1-to-1 match between WPF and Silverlight nor the XAML used in those technologies. The error you are getting implies that the XAML is trying to set a property that either doesn't exist or doesn't support the value being applied to it.</p> <p>To track this down, you'll need to look into the differences between the version of Silverlight you are using and the version of WPF that you are porting from. Just <a href="http://www.google.com/search?q=difference+between+WPF+and+Silverlight" rel="nofollow">googling</a> or <a href="http://www.bing.com/search?q=difference+between+wpf+and+silverlight" rel="nofollow">binging</a> gives quite a few links regarding this.</p> http://stackoverflow.com/questions/1525378/how-can-i-make-my-product-as-a-trial-version-for-30-days/1525404#1525404 1 Answer by Jeff Yates for how can i make my product as a trial version for 30 days ? Jeff Yates 2009-10-06T12:53:40Z 2009-10-06T12:53:40Z <p>You need to have a way of detecting if the user changes the date from when you first started the trial. In solutions I've used before, we have saved the "last executed" date and the "first executed" date and if the clock changes to anything more than two days of "last executed" we expire the trial. You also need a "days executed" counter so that they can't keep moving the date two days back (forgot to mention that part) - the counter gets incremented on each execution.</p> <p>Of course, software licensing systems like this are always avoidable by uninstalling and reinstalling with appropriate refreshing of the registry - the trick is obfuscating and duplicating your license information enough to make this difficult, but eventually, it will get found (especially if you're using an unobfuscated .NET codebase).</p> http://stackoverflow.com/questions/1427261/what-is-system-linq-expressions-in-c-used-for/1427277#1427277 3 Answer by Jeff Yates for What is System.Linq.Expressions in C# used for? Jeff Yates 2009-09-15T13:46:39Z 2009-10-04T23:41:05Z <p><a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ</a> is a .NET 3.5 feature with built-in language support from C# 3.0 and Visual Basic 2008. There are plenty of <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">examples on MSDN</a>.</p> http://stackoverflow.com/questions/1903105/which-exception-to-throw-when-a-method-try-to-use-a-field-that-can-be-null/1903141#1903141 Comment by Jeff Yates on Which Exception to throw when a method try to use a field that can be null? Jeff Yates 2009-12-14T20:09:54Z 2009-12-14T20:09:54Z @Jon: I'd say guidance is explicitly against ApplicationException http://stackoverflow.com/questions/1869691/which-c-compiler-errors-are-undocumented Comment by Jeff Yates on Which C# compiler errors are undocumented? Jeff Yates 2009-12-08T20:41:54Z 2009-12-08T20:41:54Z Er, if they're in MSDN, how are they not documented? http://stackoverflow.com/questions/1860615/code-with-undefined-behavior-in-c/1860625#1860625 Comment by Jeff Yates on Code with undefined behavior in C# Jeff Yates 2009-12-07T15:19:17Z 2009-12-07T15:19:17Z When you state &quot;the Wiki&quot;, to what Wiki are you referring? http://stackoverflow.com/questions/1860288/c-reading-file-and-pulling-out-specific-lines/1860316#1860316 Comment by Jeff Yates on C# Reading file and pulling out specific lines. Jeff Yates 2009-12-07T14:34:04Z 2009-12-07T14:34:04Z We also use condescension and prefer to omit punctuation. ;) http://stackoverflow.com/questions/1840192/p-invoke-problem-marshalling-parameter Comment by Jeff Yates on P/Invoke problem marshalling parameter Jeff Yates 2009-12-03T14:34:35Z 2009-12-03T14:34:35Z Have you tried these tools: <a href="http://www.paulyao.com/resources/tools/pinvoke.asp" rel="nofollow">paulyao.com/resources/tools/&hellip;</a> or <a href="http://www.pinvoker.com/" rel="nofollow">pinvoker.com</a> ? http://stackoverflow.com/questions/1833830/timespan-parse-time-format-hhmmss/1833876#1833876 Comment by Jeff Yates on TimeSpan.Parse time format hhmmss Jeff Yates 2009-12-02T16:07:46Z 2009-12-02T16:07:46Z You should use TimeOfDay instead of t - t.Date http://stackoverflow.com/questions/1820030/c-timer-termination/1820072#1820072 Comment by Jeff Yates on C# Timer - Termination Jeff Yates 2009-11-30T14:43:25Z 2009-11-30T14:43:25Z You buried the lead. I recommend restructuring your answer to answer the OP's question first, and THEN provide critique of the remainder. http://stackoverflow.com/questions/1820173/calculate-the-number-of-weekdays-between-two-dates-in-c Comment by Jeff Yates on Calculate the number of weekdays between two dates in C# Jeff Yates 2009-11-30T14:39:23Z 2009-11-30T14:39:23Z nodatime, perhaps? http://stackoverflow.com/questions/1820129/when-and-why-is-xml-preferable-to-csv/1820162#1820162 Comment by Jeff Yates on When and Why is XML preferable to CSV? Jeff Yates 2009-11-30T14:36:53Z 2009-11-30T14:36:53Z HTML is SGML. XML is SGML. HTML is NOT XML. XHTML is XML. http://stackoverflow.com/questions/1772156/linq-to-xml-how-to-clone-nodes-while-retaining-annotations/1772230#1772230 Comment by Jeff Yates on LINQ to XML: How to clone nodes while retaining annotations? Jeff Yates 2009-11-22T22:21:22Z 2009-11-22T22:21:22Z Hmm, that's a shame, but yes, of course it would. Could you get away with wrapping the new instance with something that can hold the original BaseUri? http://stackoverflow.com/questions/1772165/internet-explorer-developer-tool-with-silverlight-application/1772253#1772253 Comment by Jeff Yates on Internet Explorer Developer Tool with Silverlight application. Jeff Yates 2009-11-20T18:12:25Z 2009-11-20T18:12:25Z @SVI: Not that I was aware of, but apparently there is SilverlightSpy (see Mike's answer) http://stackoverflow.com/questions/1751693/debugging-silverlight-and-silverlight-unit-tests Comment by Jeff Yates on Debugging Silverlight and Silverlight Unit Tests Jeff Yates 2009-11-17T21:19:52Z 2009-11-17T21:19:52Z I use Chrome, IE and Firefox for all my testing. I can debug in all of them using the workaround below. http://stackoverflow.com/questions/1729455/int-tryparse-null-if-not-numeric Comment by Jeff Yates on int.TryParse = null if not numeric? Jeff Yates 2009-11-13T14:29:14Z 2009-11-13T14:29:14Z @Stefan: My guess is that the OP is validating string format using this method as well as enforcing a fixed string format. Therefore, they can parse 10,000 and turn it into 10000, for example. Just a guess though. http://stackoverflow.com/questions/1675732/programmatic-way-to-determine-if-code-is-running-in-silverlight/1675882#1675882 Comment by Jeff Yates on Programmatic way to determine if code is running in Silverlight? Jeff Yates 2009-11-11T21:08:17Z 2009-11-11T21:08:17Z You don't need an exhaustive cross product. You only test the configurations that are valid builds. There's no point in testing anything else. http://stackoverflow.com/questions/1675510/haskell-parsec-compile-error/1675609#1675609 Comment by Jeff Yates on Haskell Parsec compile error Jeff Yates 2009-11-05T13:49:19Z 2009-11-05T13:49:19Z You're welcome. It was a guess.