User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:37:40Z http://stackoverflow.com/feeds/user/6783 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133950/what-are-the-best-most-popular-ways-to-do-aspect-oriented-programming-aop-in-c 1 What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net? mindmodel 2008-09-25T15:22:04Z 2009-07-23T22:20:07Z <p>What are the best/most popular ways to do aspect-oriented programming (AOP) in C#/.Net?</p> http://stackoverflow.com/questions/62436/devexpress-expressapp-framework-xaf-and-express-persistent-objects-xpo-how-d 3 DevExpress eXpressApp Framework (XAF) and eXpress Persistent Objects (XPO): how do I speed up the loading time of associations? mindmodel 2008-09-15T12:43:28Z 2009-07-23T04:43:57Z <p>I am having a problem with the speed of accessing an association property with a large number of records.</p> <p>I have an XAF app with a parent class called MyParent.</p> <p>There are 230 records in MyParent.</p> <p>MyParent has a child class called MyChild.</p> <p>There are 49,000 records in MyChild.</p> <p>I have an association defined between MyParent and MyChild in the standard way:</p> <p>In MyChild:</p> <p>// MyChild (many) and MyParent (one) [Association("MyChild-MyParent")] public MyParent MyParent;</p> <p>And in MyParent:</p> <p>[Association("MyChild-MyParent", typeof(MyChild))] public XPCollection MyCHildren { get { return GetCollection("MyCHildren"); } }</p> <p>There's a specific MyParent record called MyParent1.</p> <p>For MyParent1, there are 630 MyChild records.</p> <p>I have a DetailView for a class called MyUI.</p> <p>The user chooses an item in one drop-down in the MyUI DetailView, and my code has to fill another drop-down with</p> <p>MyChild objects.</p> <p>The user chooses MyParent1 in the first drop-down.</p> <p>I created a property in MyUI to return the collection of MyChild objects for the selected value in the first drop-</p> <p>down.</p> <p>Here is the code for the property:</p> <p>[NonPersistent] public XPCollection DisplayedValues { get { Session theSession; MyParent theParentValue; XPCollection theChildren;</p> <pre><code> theParentValue = this.DropDownOne; // get the parent value if theValue == null) { // if none return null; // return null } theChildren = theParentValue.MyChildren; // get the child values for the parent return theChildren; // return it } </code></pre> <p>I marked the DisplayedValues property as NonPersistent because it is only needed for the UI of the DetailVIew. I</p> <p>don't think that persisting it will speed up the creation of the collection the first time, and after it's used to</p> <p>fill the drop-down, I don't need it, so I don't want to spend time storing it.</p> <p>The problem is that it takes 45 seconds to call theParentValue = this.DropDownOne.</p> <p>Specs: Vista Business 8 gigs of RAM 2.33 GHz E6550 processor SQL Server Express 2005</p> <p>This is too long for users to wait for one of many drop-downs in the DetailView.</p> <p>I took the time to sketch out the business case because I have two questions:</p> <p>1) How can I make the associated values load faster?</p> <p>2) Is there another (simple) way to program the drop-downs and DetailView that runs much faster?</p> <p>Yes, you can say that 630 is too many items to display in a drop-down, but this code is taking so long I suspect</p> <p>that the speed is proportional to the 49,000 and not to the 630. 100 items in the drop-down would not be too many</p> <p>for my app.</p> <p>I need quite a few of these drop-downs in my app, so it's not appropriate to force the user to enter more</p> <p>complicated filtering criteria for each one. The user needs to pick one value and see the related values.</p> <p>I would understand if finding a large number of records was slow, but finding a few hundred shouldn't take that long.</p> <p>Thanks very much in advance,</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/577749/is-there-a-way-to-force-a-c-class-to-implement-certain-static-functions/1048757#1048757 0 Answer by mindmodel for Is there a way to force a C# class to implement certain static functions? mindmodel 2009-06-26T12:01:48Z 2009-06-26T12:01:48Z <p>The singleton pattern does not help in all cases. My example is from an actual project of mine. It is not contrived.</p> <p>I have a class (let's call it "Widget") that inherits from a class in a third-party ORM. If I instantiate a Widget object (therefore creating a row in the db) just to make sure my static methods are declared, I'm making a bigger mess than the one I'm trying to clean up.</p> <p>If I create this extra object in the data store, I've got to hide it from users, calculations, etc.</p> <p>I use interfaces in C# to make sure that I implement common features in a set of classes.</p> <p>Some of the methods that implement these features require instance data to run. I code these methods as instance methods, and use a C# interface to make sure they exist in the class.</p> <p>Some of these methods do not require instance data, so they are static methods. If I could declare interfaces with static methods, the compiler could check whether or not these methods exist in the class that says it implements the interface.</p> http://stackoverflow.com/questions/200908/is-there-an-easy-to-use-free-or-inexpensive-web-based-business-rules-app-with-a 0 Is there an easy-to-use, free or inexpensive, web-based business rules app with a GUI? mindmodel 2008-10-14T12:15:38Z 2009-06-06T16:00:02Z <p>I am looking for a web-based business rules app that I can use with clients.</p> <p>After I get them started, the client would be able to enter new rules.</p> <p>Assume that the client has good Excel skills (as an example of level of tech sophistication) but has little patience for formal languages or programming.</p> <p><strong>Cost:</strong> $0-$500</p> <p>The resulting models will NOT be executable.</p> <p>Mindmaps are very useful, but the star configuration doesn't lend itself to flowchart-type applications.</p> <p>BRML is much too technical, and requires the author to break down processes into page-sized chunks.</p> <p><strong>Example of a use case:</strong></p> <ul> <li>A box of widgets arrives at the client office.</li> </ul> <p>The user finds the section of the model for receiving a box.</p> <p>Which vendor sent the box?</p> <p>What does the user do with the contents of the box?</p> <p>Which features of our back-end Web app have to be used to account for the new widgets?</p> <p>The app will help the user find the answers to these questions.</p> <p>If the answers are not there, the user can enter new rules into the app. This process must be simple enough that the business user sees the value of the effort in the short term, not as some big investment that might pay off far in the future.</p> <p><strong>Possible features:</strong></p> <ul> <li><p>A decision-tree-like UI that the user can follow to find out what to do in a given situation.</p></li> <li><p>A search feature that allows the user to find a rule without following the tree.</p></li> <li><p>Expand/collapse so the user can see large, detailed sections of the tree as single units.</p></li> </ul> <p>Does such an app currently exist?</p> <p>Thanks very much in advance,</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/803993/can-anyone-point-me-to-csla-apps-running-live-on-the-web 2 Can anyone point me to CSLA app's running live on the Web? mindmodel 2009-04-29T19:52:55Z 2009-05-24T20:54:10Z <p>Can anyone point me to CSLA.Net app's running live on the Web?</p> http://stackoverflow.com/questions/107878/whats-the-best-source-level-debugger-for-coldfusion-mx-2004 0 What's the best source-level debugger for ColdFusion MX 2004? mindmodel 2008-09-20T10:55:48Z 2009-04-14T19:51:53Z <p>I have a legacy web site in ColdFusion MX 2004. I'm re-writing it in .Net, so I don't want to pay $600+ for an upgrade to the latest version of ColdFusion, nor do I want to go through the (very large) site fixing version incompatibilities.</p> <p>I often have to track down and fix bugs in the site.</p> <p>A source-level debugger that would let me step through the code line-by-line and examine variables would be a HUGE time-saver.</p> <p>Does anyone have experience using any of the third-party ColdFusion source-level debuggers?</p> <p>Thanks very much in advance for any recommendations.</p> http://stackoverflow.com/questions/603177/c-how-do-i-call-a-static-method-of-a-base-class-from-a-static-method-of-a-deriv 0 C#: How do I call a static method of a base class from a static method of a derived class? mindmodel 2009-03-02T17:24:58Z 2009-03-12T03:46:05Z <p>In C#, I have base class Product and derived class Widget.</p> <p>Product contains a static method MyMethod().</p> <p>I want to call static method Product.MyMethod() from static method Widget.MyMethod().</p> <p>I can't use the base keyword, because that only works with instance methods.</p> <p>I can call Product.MyMethod() explicitly, but if I later change Widget to derive from another class, I have to revise the method.</p> <p>Is there some syntax in C# similar to base that allows me to call a static method from a base class from a static method of a derived class?</p> http://stackoverflow.com/questions/401014/how-do-you-learn-wpf-and-silverlight/407617#407617 1 Answer by mindmodel for How do you learn WPF and Silverlight? mindmodel 2009-01-02T18:18:17Z 2009-01-02T18:18:17Z <p>Check the web site for your local library.</p> <p>I live in Boston, MA. Buried deep in their web site is a free subscription to Safari Books Online, which has thousands of tech and business books from top publishers including O'Reilly, etc.</p> <p>Buried on another page is a web form you can fill out to have them send you a library card number via email. The library card number gets you access to the tech books.</p> <p>There are also free audiobooks on another page. Not for tech, but there is life after programming!</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/407448/the-application-that-helped-your-programming-the-most-in-2008/407573#407573 1 Answer by mindmodel for The Application that helped your programming the most in 2008 mindmodel 2009-01-02T18:01:51Z 2009-01-02T18:01:51Z <p>DevExpress eXpressApp Framework (XAF)</p> <p><a href="http://www.devexpress.com/Products/NET/Application_Framework/" rel="nofollow">http://www.devexpress.com/Products/NET/Application_Framework/</a></p> <p>If you're a .Net developer who writes database-backed Web sites, you've got to check it out.</p> <p>It takes a few weeks to learn, but after that, it multiplies your productivity.</p> http://stackoverflow.com/questions/107878/whats-the-best-source-level-debugger-for-coldfusion-mx-2004/208162#208162 0 Answer by mindmodel for What's the best source-level debugger for ColdFusion MX 2004? mindmodel 2008-10-16T11:25:44Z 2008-10-16T11:25:44Z <p>BlueDragon.Net is interesting, but I installed it and found out that it does not do source-level debugging.</p> http://stackoverflow.com/questions/178722/what-to-charge-clients-for-work-in-older-technologies/201338#201338 0 Answer by mindmodel for What To Charge Clients For Work In Older Technologies? mindmodel 2008-10-14T14:18:02Z 2008-10-14T14:18:02Z <p>Also consider the situation in terms of that overused phrase "win-win".</p> <p>From the client's perspective, keeping the old technology may be a win, because it's in place, working, debugged, etc.</p> <p>Most of what we communicate with clients is on their terms, i.e. what makes the deal a win for them.</p> <p>But if working in old technologies is too much of a loss for you, it's prudent and necessary for you to consider that fact, and adjust your business relationships accordingly. Raising your rates for those projects may be part of that adjustment.</p> <p>Clients work with you because you help them win, but you can only do so if you also take care of your own business needs. If you neglect those too long, you may begin to resent the client, taper off working for them, etc.</p> <p>It's better to share these facts with the client than to keep them a secret. The client can then choose to hire someone else, pay a little more for work on the old technology, or move to a new technology, depending on the situation.</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/200908/is-there-an-easy-to-use-free-or-inexpensive-web-based-business-rules-app-with-a/201051#201051 0 Answer by mindmodel for Is there an easy-to-use, free or inexpensive, web-based business rules app with a GUI? mindmodel 2008-10-14T12:58:52Z 2008-10-14T12:58:52Z <p>I understand, but there are a few distinctions:</p> <p>1) Expert systems estimate answers with variable degrees of certainty.</p> <p>I need a system that proposes a finite set of recommendations, but each recommendation is 100% proposed by the system, because a user entered it as such.</p> <p>E.g. in situation X, do Y.</p> <p>It is up to the user to interpret the "X" correctly and decide when and where it applies.</p> <p>I don't want a system that tries to infer suggestions from formalized rules.</p> <p>2) The expert systems I've found cost tens of thousands of dollars or more.</p> <p>3) I need a system that exists today, with a Web-based GUI, not a rules engine that I can spend thousands of hours building a GUI for.</p> http://stackoverflow.com/questions/30526/does-anyone-use-mindmapping-tools/200927#200927 1 Answer by mindmodel for Does anyone use mindmapping tools? mindmodel 2008-10-14T12:23:24Z 2008-10-14T12:23:24Z <p>I use MindManager (www.mindjet.com) every day.</p> <p>It's very expensive ($350) but, for my purposes, in my opinion, worth it.</p> <p>I've tried the free tools, but for me they are too awkward.</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/153023/insert-rows-into-access-db-from-c-using-microsoft-jet-oledb-4-0-autonumber-colu 0 Insert rows into Access db from C# using Microsoft.Jet.OLEDB.4.0, autonumber column is set to zero mindmodel 2008-09-30T13:29:12Z 2008-10-11T23:10:41Z <p>I'm using C# and Microsoft.Jet.OLEDB.4.0 provider to insert rows into an Access mdb.</p> <p>Yes, I know Access sucks. It's a huge legacy app, and everything else works OK.</p> <p>The table has an autonumber column. I insert the rows, but the autonumber column is set to zero.</p> <p>I Googled the question and read all the articles I could find on this subject. One suggested inserting -1 for the autonumber column, but this didn't work. None of the other suggestions I could find worked.</p> <p>I am using OleDbParameter's, not concatenating a big SQL text string.</p> <p>I've tried the insert with and without a transaction. No difference.</p> <p>How do I get this insert to work (i.e. set the autonumber column contents correctly)?</p> <p>Thanks very much in advance,</p> <p>Adam Leffert</p> http://stackoverflow.com/questions/153023/insert-rows-into-access-db-from-c-using-microsoft-jet-oledb-4-0-autonumber-colu/153124#153124 0 Answer by mindmodel for Insert rows into Access db from C# using Microsoft.Jet.OLEDB.4.0, autonumber column is set to zero mindmodel 2008-09-30T13:56:31Z 2008-09-30T13:56:31Z <p>I'm not specifying a value.</p> <p>I only tried that once, <strong>after</strong> running into the problem, because it was suggested in an article I found on the web.</p> http://stackoverflow.com/questions/134155/what-are-the-good-bad-and-ugly-about-the-web-frameworks-that-you-use/135676#135676 1 Answer by mindmodel for What are the good, bad, and ugly about the web framework(s) that you use? mindmodel 2008-09-25T20:05:48Z 2008-09-25T20:05:48Z <p>I'm using XAF from DevExpress.com.</p> <p>If you're doing .Net, it's definitely worth a look.</p> <p>The project is at the early beta stage, but so far the framework has been completely reliable.</p> http://stackoverflow.com/questions/135122/hosted-crm-system-with-an-api/135569#135569 0 Answer by mindmodel for Hosted CRM system with an API? mindmodel 2008-09-25T19:49:20Z 2008-09-25T19:49:20Z <p><a href="http://www.salesnet.com" rel="nofollow">http://www.salesnet.com</a></p> http://stackoverflow.com/questions/135186/reading-and-posting-to-web-pages-using-c/135523#135523 0 Answer by mindmodel for Reading and posting to web pages using C# mindmodel 2008-09-25T19:40:27Z 2008-09-25T19:40:27Z <p>I've had very good luck with this product:</p> <p>IMacros</p> <p><a href="http://www.iopus.com/" rel="nofollow">http://www.iopus.com/</a></p> <p>I have an app that's been running for many months, maybe over a year using their product.</p> <p>The top-level product has a GUI that you can use to record and edit macros, and C# libraries that you can call from .Net code.</p> <p>IMHO, this is one of those programming areas that seems simple when you start ("I'll just GET the HTML for the page, process the string, then GET the next page...") but in practice it turns out to be a real PITA.</p> http://stackoverflow.com/questions/62436/devexpress-expressapp-framework-xaf-and-express-persistent-objects-xpo-how-d/91582#91582 0 Answer by mindmodel for DevExpress eXpressApp Framework (XAF) and eXpress Persistent Objects (XPO): how do I speed up the loading time of associations? mindmodel 2008-09-18T10:52:21Z 2008-09-18T10:52:21Z <p>Thanks for the answer. I created a separate solution and was able to get good performance, as you suggest.</p> <p>My SQL connection is OK and works with other features in the app.</p> <p>Given that I'm using XAF and not doing anything extra/fancy, aren't my sessions managed by XAF?</p> <p>The session I use is read from the DetailView.</p> http://stackoverflow.com/questions/603177/c-how-do-i-call-a-static-method-of-a-base-class-from-a-static-method-of-a-deriv/603257#603257 Comment by on C#: How do I call a static method of a base class from a static method of a derived class? 2009-03-02T17:43:36Z 2009-03-02T17:43:36Z Fair enough. In this case, the solution is worse than the problem. Thanks. http://stackoverflow.com/questions/603177/c-how-do-i-call-a-static-method-of-a-base-class-from-a-static-method-of-a-deriv/603207#603207 Comment by on C#: How do I call a static method of a base class from a static method of a derived class? 2009-03-02T17:38:15Z 2009-03-02T17:38:15Z True. You know the difference between static variables (one per class) and instance variables (one per instance). Why is this distinction not useful? Why it is bad OO design? http://stackoverflow.com/questions/603177/c-how-do-i-call-a-static-method-of-a-base-class-from-a-static-method-of-a-deriv/603188#603188 Comment by on C#: How do I call a static method of a base class from a static method of a derived class? 2009-03-02T17:36:07Z 2009-03-02T17:36:07Z &gt; static methods are basically a method to fallback... Why is this true? In the code for my class, the methods that rely on instance data are instance methods. The methods that don't rely on instance data, but only rely on parameters (if any) are static methods. I find this distinction useful.