User Dominic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:01:19Z http://stackoverflow.com/feeds/user/65530 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/577320/asp-net-treeview-scrolling-the-selected-node-into-view 0 ASP.Net TreeView Scrolling the selected node into view Dominic 2009-02-23T11:23:26Z 2009-08-24T10:36:58Z <p>Is there a way to scroll the selected node of an ASP.Net TreeView into view after a postback? </p> <p>In my parrticular scenario the control is repopulated after each postback.</p> <p>Thanks!</p> http://stackoverflow.com/questions/810686/what-new-technologies-do-you-want-to-learn-next-year/810981#810981 0 Answer by Dominic for What new technologies do you want to learn next year? Dominic 2009-05-01T11:03:09Z 2009-05-01T11:03:09Z <p>I'd like to learn WCF, JQuery and Silverlight for work related projects.</p> <p>For fun, I'd like to learn F# or another functional language, Ruby on Rails and WPF.</p> <p>Also, I'd love to finally have the time to read from cover-to-cover Refactoring by Martin Fowler. </p> http://stackoverflow.com/questions/685375/why-has-delphi-declined/685480#685480 6 Answer by Dominic for Why has Delphi declined? Dominic 2009-03-26T12:07:00Z 2009-03-26T12:07:00Z <p>I used Delphi 2-6 and it was great. I still miss some features of it. You are correct it was just so fast for simple jobs. </p> <p>It all started going wrong from version 8 onwards. Delphi just got too expensive and buggy. I always felt that Borland / Inprise / Borland again, never really had enough money to develop Delphi fully or to market it. I also always had the nagging idea in the back of my mind they were never completely committed to doing what was necessary to make Delphi succeed. The loss of Anders Hejlsberg to MS didn't help. </p> <p>Then .Net came out. I felt I had to switch to C# not because of inadequacies in Delphi but doubts about its future. It is better to jump than be pushed! Many other developers made the switch too at this time.</p> http://stackoverflow.com/questions/614310/good-java-resources-for-c-developers/615686#615686 0 Answer by Dominic for Good Java resources for C# developers Dominic 2009-03-05T17:03:34Z 2009-03-05T17:03:34Z <p>Effective Java Second Edition by Joshua Bloch is an excellent and concise resource. Its a very highly regarded book and rightly so imho.</p> http://stackoverflow.com/questions/610199/the-art-of-programming-java-vs-c/610235#610235 1 Answer by Dominic for The art of programming: Java vs C# Dominic 2009-03-04T11:53:37Z 2009-03-04T11:53:37Z <p>I think the programmer is more important than the technology used. You can do fantastic software with either Java or C#. Don't get hung up which language is better. Instead focus on mastering what you use daily. </p> http://stackoverflow.com/questions/610061/asp-net-page-onload-executes-twice/610087#610087 0 Answer by Dominic for ASP.NET Page.OnLoad executes twice Dominic 2009-03-04T10:53:19Z 2009-03-04T10:59:52Z <p>Do you have any controls with AutoPostBack set to true ? That will cause the Page object to be recreated and therefore the PageLoad method will execute again.</p> http://stackoverflow.com/questions/578182/recommend-a-good-book-about-web-services-net/578522#578522 0 Answer by Dominic for Recommend a good book about Web Services (.NET)? Dominic 2009-02-23T17:28:12Z 2009-02-23T17:28:12Z <p>I found <em>Learning WC</em> F to be out of date in a few areas.</p> <p><em>Programming WCF Services</em> by Juval Lowy was printed very recently and should be right upto date. It is however heavier going than <em>Learning WCF</em>.</p> <p>I am currently reading <em>RESTful.NET</em> By Jon Flanders which is proving to be interesting.</p> http://stackoverflow.com/questions/577320/asp-net-treeview-scrolling-the-selected-node-into-view/577510#577510 0 Answer by Dominic for ASP.Net TreeView Scrolling the selected node into view Dominic 2009-02-23T12:42:56Z 2009-02-23T12:42:56Z <p>I figured it out. The TreeView control creates a javascript object on the client. It is named whatever you called the treeview with a '_Data' appended. The object lets you get a reference to the selected node.</p> <p>The code below uses the ASP.Net Ajax extensions. Just remember to change the TreeView name to whatever you called yours.</p> <pre><code>var name = myTreeView_Data.selectedNodeID.value; var selectedNode = $get(name); if(selectedNode) { selectedNode.scrollIntoView(true); } </code></pre> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/542373#542373 1 Answer by Dominic for What development book made the most impact on you as a developer? Dominic 2009-02-12T17:15:14Z 2009-02-12T17:15:14Z <p>Has to be Code Complete. I had the good fortune of buying as I started my first steps as a programmer. I learned so much from it I immediately re-read it. I firmly believe it transformed by skills in a short space of time.</p> <p>I have recommended it to various junior programmers and university students but sadly my advice always seems to fall on deaf ears. shame really its just so packed with lessons learned from practical experience. It really is a treasure trove of great advice.</p> http://stackoverflow.com/questions/541508/should-i-keep-reading-the-pragmatic-programmer/542219#542219 1 Answer by Dominic for Should I keep reading the pragmatic programmer? Dominic 2009-02-12T16:47:26Z 2009-02-12T16:47:26Z <p>Keep reading it - it will make you a better programmer even if you only understand some of it. Personally, I prefer Code Complete by Steve McConnell. The first chapters are average but the rest of the book is pure gold. I'd recommend it whole-heartedly for any junior to intermediate coder. I treasure my first edition copy.</p> http://stackoverflow.com/questions/811614/c-is-keyword-and-checking-for-not/811694#811694 Comment by Dominic on C# : 'is' keyword and checking for Not Dominic 2009-05-01T14:49:48Z 2009-05-01T14:49:48Z I like it. Simple and readable. http://stackoverflow.com/questions/810686/what-new-technologies-do-you-want-to-learn-next-year/810697#810697 Comment by Dominic on What new technologies do you want to learn next year? Dominic 2009-05-01T11:53:31Z 2009-05-01T11:53:31Z Looks like a very interesting language! http://stackoverflow.com/questions/305223/jon-skeet-facts/310138#310138 Comment by Dominic on Jon Skeet Facts? Dominic 2009-03-27T09:41:06Z 2009-03-27T09:41:06Z This is brilliant!