User Gareth D - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:03:34Z http://stackoverflow.com/feeds/user/3580 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1553986/honouring-of-attributeusage-on-derived-attribute-types 1 Honouring of AttributeUsage on derived attribute types Gareth D 2009-10-12T11:13:49Z 2009-10-20T21:03:09Z <p>Given the following, I would not expect the compiler to allow multiple attributes that are derived from the base attribute, given that is set to AllowMultiple=false. In fact it compiles without a problem - what am I missing here?</p> <pre><code>using System; [AttributeUsage(AttributeTargets.Property,AllowMultiple=false,Inherited=true)] abstract class BaseAttribute : Attribute { } sealed class DerivedAttributeA : BaseAttribute { } sealed class DerivedAttributeB : BaseAttribute { } class Sample1 { [DerivedAttributeA()] [DerivedAttributeB()] public string PropertyA{ get; set; } // allowed, concrete classes differ [DerivedAttributeA()] [DerivedAttributeA()] public string PropertyB { get; set; } // not allowed, concrete classes the same, honours AllowMultiple=false on BaseAttribute } </code></pre> http://stackoverflow.com/questions/8440/visual-studio-optimizations/114897#114897 5 Answer by Gareth D for Visual Studio Optimizations Gareth D 2008-09-22T13:35:26Z 2009-08-03T12:22:17Z <p>Ensure 'Only build startup projects and dependencies on Run' is selected.</p> <p>This option can be found under Tools -> Options... -> Projects and Solutions -> Build and Run.</p> <p>For large solutions this can save a significant amount of time.</p> <p>NB it's propbably best practice to avoid very large solutions, but if you are forced to work with one then this can make all the difference.</p> http://stackoverflow.com/questions/531768/asp-net-help-with-datagrid-checkboxes-double-submit 0 ASP.Net - Help with datagrid/checkboxes/double submit Gareth D 2009-02-10T10:13:12Z 2009-07-29T11:27:08Z <p>We have a simple datagrid. Each row has a checkbox. The checkbox is set to autopostback, and the code-behind has an event handler for the checkbox check-changed event. This all works as expected, nothing complicated.</p> <p>However, we want to disable the checkboxes as soon as one is checked to prevent a double submit i.e. check box checked, all checkboxes are disabled via client side javascript, form submitted.</p> <p>To achieve this I we are injecting some code into the onclick event as follows (note that the alert is just for testing!):</p> <pre><code>Protected Sub DgAccounts_ItemCreated(ByVal sender As System.Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DgAccounts.ItemCreated If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then Dim chk As CheckBox = CType(e.Item.FindControl("chkItemChecked"), CheckBox) chk.Attributes.Add("onclick", "alert('fired ...');DisableAllDataGridCheckBoxes();") End If End Sub </code></pre> <p>When inspecting the source of the rendered page we get the following:</p> <pre><code>&lt;input id="DgAccounts__ctl2_chkItemChecked" type="checkbox" name="DgAccounts:_ctl2:chkItemChecked" onclick="alert('fired ...');DisableAllDataGridCheckBoxes();setTimeout('__doPostBack(\'DgAccounts$_ctl2$chkItemChecked\',\'\')', 0)" language="javascript" /&gt; </code></pre> <p>It all appears in order, however the server side event does not fire – I believe this is due to the checkbox being disabled, as if we just leave the alert in and remove the call to disable the checkbox it all works fine.</p> <p>Can I force the check-changed event to fire even though the check box is disabled?</p> http://stackoverflow.com/questions/531768/asp-net-help-with-datagrid-checkboxes-double-submit/532007#532007 0 Answer by Gareth D for ASP.Net - Help with datagrid/checkboxes/double submit Gareth D 2009-02-10T11:53:20Z 2009-02-10T11:53:20Z <p>The reason the server side event is not firing is that disabled checkboxes do not get submited with the rest of the form.</p> <p>The workaround I have used is to set the onclick event of the checkboxes to null rather than disable them - while this gives no visual clue to the user that subsequent clicks are ignored, it does prevent the double submit, and the check boxes are set top the correct state when the response is rendered.</p> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/524134#524134 0 Answer by Gareth D for Determine property calls between two classes in .Net Gareth D 2009-02-07T17:10:40Z 2009-02-07T17:10:40Z <p>The solution involves static analysis of the code - essentially we are looking for dependencies on type A in type B. Out of the box the .Net reflection APIs can only take you so far before you have to resort to parsing the IL - as Jon notes below this is not to be taken lightly. The answers below have led to a couple of libraries that may help, I will be investigating them both:</p> <ul> <li><a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono-cecil</a></li> <li><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a></li> </ul> http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net 0 Determine property calls between two classes in .Net Gareth D 2009-02-07T08:07:33Z 2009-02-07T17:10:40Z <p>Given two .Net types, type A and type B, how could one determine all property calls to type A (including sub classes of type A) made from type B?</p> http://stackoverflow.com/questions/34109/ms-wf-state-machine-workflows-and-ms-crm-dynamics-4-0 1 MS WF state machine workflows and MS CRM Dynamics 4.0 Gareth D 2008-08-29T07:22:46Z 2009-02-02T12:12:01Z <p>MS CRM Dynamics 4.0 incorporates the MS WF engine. The built in designer allows the creation of sequential workflows whos activities have native access to CRM entities.</p> <p>Is it possible to:</p> <ul> <li>Create a state machine workflow outside of CRM (i.e. in visual studio) and import it into CRM? </li> <li>Have this workflow access the CRM entities?</li> </ul> http://stackoverflow.com/questions/204801/how-to-declare-lambda-event-handlers-in-vb-net 3 How to declare lambda event handlers in VB.Net ? Gareth D 2008-10-15T13:57:22Z 2008-10-19T05:11:09Z <p>I believe the following VB.Net code is the equivalent of the proceeding C# code; however the VB.Net test fails - the event handling Lambda is never called.</p> <p>What is going on?</p> <p>VB.Net version - fails:</p> <pre><code>&lt;TestFixture()&gt; _ Public Class TestClass &lt;Test()&gt; _ Public Sub EventTest() Dim eventClass As New EventClass Dim eventRaised As Boolean = False AddHandler eventClass.AnEvent, Function() (eventRaised = True) eventClass.RaiseIt() Assert.IsTrue(eventRaised) End Sub End Class Public Class EventClass Public Event AnEvent() Public Sub RaiseIt() RaiseEvent AnEvent() End Sub End Class </code></pre> <p>C# version - passes:</p> <pre><code>[TestFixture] public class TestClass { [Test] public void EventTest() { var eventClass = new EventClass(); var eventRaised = false; eventClass.AnEvent += () =&gt; { eventRaised = true; }; eventClass.RaiseIt(); Assert.IsTrue(eventRaised); } } public class EventClass { public delegate void EventHandler(); public event EventHandler AnEvent; public void RaiseIt() { AnEvent(); } } </code></pre> http://stackoverflow.com/questions/204801/how-to-declare-lambda-event-handlers-in-vb-net/204992#204992 5 Answer by Gareth D for How to declare lambda event handlers in VB.Net ? Gareth D 2008-10-15T14:45:04Z 2008-10-15T15:31:30Z <p>The difference is that in VB.Net a lambda expression must return a value i.e. they must be functions not subs. The lambda expression <code>eventRaised = true</code> is being interpreted as a boolean expression rather than an assignment i.e. is evaluating to false rather than setting to true.</p> <p>Further details on <a href="http://msdn.microsoft.com/en-us/library/bb531253.aspx" rel="nofollow">MSDN</a>.</p> <p>I'm don't think the c# pattern for testing events used in the example can be done in VB.Net without introducing another function e.g.</p> <pre><code>&lt;TestFixture()&gt; _ Public Class Test &lt;Test()&gt; _ Public Sub EventTest() Dim eventClass As New EventClass Dim eventRaised As Boolean = False AddHandler eventClass.AnEvent, Function() (SetValueToTrue(eventRaised)) eventClass.RaiseIt() Assert.IsTrue(eventRaised) End Sub Private Function SetValueToTrue(ByRef value As Boolean) As Boolean value = True Return True End Function End Class Public Class EventClass Public Event AnEvent() Public Sub RaiseIt() RaiseEvent AnEvent() End Sub End Class </code></pre> http://stackoverflow.com/questions/119679/list-of-stored-procedure-from-table/119731#119731 1 Answer by Gareth D for List of Stored Procedure from Table Gareth D 2008-09-23T08:01:57Z 2008-09-23T08:01:57Z <p>Use sys.dm_sql_referencing_entities</p> <p>Note that sp_depends is obsoleted.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb630351.aspx" rel="nofollow">MSDN Reference</a></p> http://stackoverflow.com/questions/115586/how-do-you-do-code-reviews/115657#115657 0 Answer by Gareth D for How do you do code reviews? Gareth D 2008-09-22T15:45:49Z 2008-09-22T15:45:49Z <p>We have had some success using the the TFS shelveset feature to do distributed code reviews. Using shelvesets a developer can 'check in' a changeset without commiting them to the branch. Another developer can then unshelve the changeset and review the diffs against the commited branch. Once everyone concerned is happy with the changeset they are commited to the branch.</p> http://stackoverflow.com/questions/115554/convincing-the-boss-to-upgrade-from-vss/115572#115572 6 Answer by Gareth D for Convincing the Boss to Upgrade from VSS Gareth D 2008-09-22T15:35:33Z 2008-09-22T15:35:33Z <p>Very similar question:</p> <p><a href="http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn#115523">How do I convince my team to drop sourcesafe and move to SVN?</a></p> http://stackoverflow.com/questions/115124/what-are-your-experiences-with-windows-workflow-foundation/115421#115421 1 Answer by Gareth D for What are your experiences with Windows Workflow Foundation? Gareth D 2008-09-22T15:15:35Z 2008-09-22T15:15:35Z <p>I consider MS WF as a low-level workflow library rather than a fully fledged enterprise workflow product such as K2. It will enable you to build a workflow enabled application, but is not in itself a workflow application. My experiance of it in this capacity has been positive, although we have had to build a lot of our own infrastructure around it (a pub/sub framework, a worlkflow lifetime manager etc). A lot of the documentation out there is fairly simplistic and does not cover building up an enterprise workflow application based on MS WF.</p> http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it/115292#115292 1 Answer by Gareth D for My Java factory method smells. How do I fix it? Gareth D 2008-09-22T14:55:26Z 2008-09-22T14:55:26Z <p>Taking a Convetion vs Configuration approach and using reflection to scan for available Command objects and loading them into your map would be the way to go. You then have the ability to expose new Commands without a recompile of the factory.</p> http://stackoverflow.com/questions/114950/how-do-you-verify-the-work-and-experience-level-of-consultants/114989#114989 5 Answer by Gareth D for How do you verify the Work and Experience level of Consultants? Gareth D 2008-09-22T13:56:56Z 2008-09-22T13:56:56Z <p>If you are not confident at all of being able to weed out the charlatans yourself you need to use someone who is confident, for example:</p> <ul> <li>A trusted colleague/friend/contact</li> <li>A reputable recruitment agency</li> <li>A reputable consultancy</li> </ul> <p>An agency or consultancy will have a cost involved, but hiring the wrong person will also have a cost!</p> http://stackoverflow.com/questions/1553986/honouring-of-attributeusage-on-derived-attribute-types/1554020#1554020 Comment by Gareth D on Honouring of AttributeUsage on derived attribute types Gareth D 2009-10-12T13:14:19Z 2009-10-12T13:14:19Z I feared that might be the case, thanks for the confirmation. http://stackoverflow.com/questions/113395/how-can-i-test-for-an-expected-exception-with-a-specific-exception-message-from-a Comment by Gareth D on How can I test for an expected exception with a specific exception message from a resource file in Visual Studio Test? Gareth D 2009-10-08T16:55:21Z 2009-10-08T16:55:21Z The message parameter does not get checked against the message of the thrown exception. http://stackoverflow.com/questions/531768/asp-net-help-with-datagrid-checkboxes-double-submit/531862#531862 Comment by Gareth D on ASP.Net - Help with datagrid/checkboxes/double submit Gareth D 2009-02-10T19:35:43Z 2009-02-10T19:35:43Z Needs to be client side. http://stackoverflow.com/questions/531768/asp-net-help-with-datagrid-checkboxes-double-submit/531834#531834 Comment by Gareth D on ASP.Net - Help with datagrid/checkboxes/double submit Gareth D 2009-02-10T19:35:01Z 2009-02-10T19:35:01Z Hi Andy - yes the check box that was checked needs to be disabled also. http://stackoverflow.com/questions/523431/determine-property-calls-between-two-classes-in-net/523449#523449 Comment by Gareth D on Determine property calls between two classes in .Net Gareth D 2009-02-07T08:38:12Z 2009-02-07T08:38:12Z @Jon - the bigger picture is an ORM type framework over MS CRM. Although we will be requiring the information at runtime a static analysis will be fine. I will investigate ndepend, thanks for the tip. I'll post back my findings hopefully in less than 6 months!). providing http://stackoverflow.com/questions/204801/how-to-declare-lambda-event-handlers-in-vb-net/216036#216036 Comment by Gareth D on How to declare lambda event handlers in VB.Net ? Gareth D 2008-10-20T19:22:37Z 2008-10-20T19:22:37Z Understood that this is an anonymous delegate and not a lambda expression. However, is the following (which does work) an anonymous delegate in VB?: AddHandler eventClass.AnEvent, Function() (SetValueToTrue(eventRaised)) http://stackoverflow.com/questions/204801/how-to-declare-lambda-event-handlers-in-vb-net/204992#204992 Comment by Gareth D on How to declare lambda event handlers in VB.Net ? Gareth D 2008-10-16T07:11:23Z 2008-10-16T07:11:23Z Agreed, it seems they did the minimal to get link going and that was it. http://stackoverflow.com/questions/115096/how-do-i-prevent-tfs-from-overwriting-a-label Comment by Gareth D on How do I prevent TFS from overwriting a label? Gareth D 2008-09-22T14:29:14Z 2008-09-22T14:29:14Z In TFS the name of a label must be unique - whhy would you want multiple labels of the same name? Surely this would be confusing?