<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://dotnet.org.za/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Pann&amp;#39;s Thoughts</title><subtitle type="html">Thinking out loud </subtitle><id>http://dotnet.org.za/roaan/atom.aspx</id><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/default.aspx" /><link rel="self" type="application/atom+xml" href="http://dotnet.org.za/roaan/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20611.960">Community Server</generator><updated>2006-01-10T21:03:59Z</updated><entry><title>Portal / Web part sites</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx" /><id>http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx</id><published>2007-05-14T12:03:00Z</published><updated>2007-05-14T12:03:00Z</updated><content type="html">I&amp;#39;m investigating the use of web parts and was wondering whether any one can point me to some portals sites (i.e. sites that make use of a portal).
I&amp;#39;m not intersted from a technical point of view, but rather from a user experience point of view. If you know of any interesting portal type sites, please drop me a comment.
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;;subject=Portal+%2f+Web+part+sites" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;;title=Portal+%2f+Web+part+sites" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;title=Portal+%2f+Web+part+sites" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;;title=Portal+%2f+Web+part+sites" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx&amp;amp;;title=Portal+%2f+Web+part+sites&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/05/14/portal-web-part-sites.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=151200" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>OO and Web applications</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx" /><id>http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx</id><published>2007-03-26T19:26:43Z</published><updated>2007-03-26T19:26:43Z</updated><content type="html">&lt;p&gt;I think I might possibly, perchance, accidentally,&amp;nbsp;unwittingly have&amp;nbsp;been missing something the last couple of years.&lt;/p&gt; &lt;p&gt;I have generally struggled to bring a rich domain model into play when building web applications. The main reason for this is that a web application is for all practical purposes stateless. The problem I have (had?) is that I do not want to bring the whole "rich" domain model to life just for one "web" call. I.e. I do not want to load the whole model (I'm not talking about lazy loading concepts here) attach listeners (on to the model) where neccesary and then detach the listeners and "remove" the model just for one call. Also to me a rich domain (OO) model implies state, else I'm actually just back to normal procedural programming but with the benefit of "grouping".&lt;/p&gt; &lt;p&gt;So, to date,&amp;nbsp;I've used the standard web patterns and tools e.g. front controller, session facade (and in the java world the standard BOs&amp;nbsp; and DAOs) with hibernate etc. However my domain model (or entities) were pretty dumb (and persisted with (n)Hibernate) and would probably have been the poster child for the anemic domain model. (PS. I still think the anemic domain model has its place)&lt;/p&gt; &lt;p&gt;Well, today I again paged through my Domain Driven Design book (Eric Evans) and skimmed through repositories (since I've been using it WAAAY before the book was even a gleam in Eric's eye) and something struck me. What if, instead of creating a new repository everytime (like it seems a lot of people do) I keep it around.&lt;/p&gt; &lt;p&gt;What if the repository was implemented with the aid of that other (bad child)&amp;nbsp;pattern named&amp;nbsp; Singleton. It would mean that my Repository would be in memory for the duration of the web application, and not just the one web call. All the CRUD operation can then take place through the Repository and since the Repistory is not destroyed everytime, it means I can even attach event handlers etc to my objects.&lt;/p&gt; &lt;p&gt;Admittadly it's not as easy as it sounds. One of the possible problems is that you'd end up with the whole database in memory and that is definately a BAD idea. Still, I think I'll persue this line of thought further and see where it leads me.&lt;/p&gt; &lt;p&gt;If you have any thoughts or experience in this regard, I'm eager to hear from you.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;;subject=OO+and+Web+applications" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;;title=OO+and+Web+applications" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;title=OO+and+Web+applications" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;;title=OO+and+Web+applications" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx&amp;amp;;title=OO+and+Web+applications&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/03/26/oo-and-web-applications.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=118235" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author><category term="Software Dev" scheme="http://dotnet.org.za/roaan/archive/tags/Software+Dev/default.aspx" /></entry><entry><title>Beware of Averages</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx" /><id>http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx</id><published>2007-02-16T21:12:09Z</published><updated>2007-02-16T21:12:09Z</updated><content type="html">&lt;p&gt;I'm not a fan of averages. Truth be told I think averages are evil.&lt;/p&gt; &lt;p&gt;I normally go into an "average" rant whenever a new developer starts doing performance testing. Said developer will then give me "average" times, thinking it indicatesa program/process' performance. When I explain to said developer why averages (or they way he calculated) are useless, he (normally they) still don't believe me. (Most of the times though it's probably because their ego can't handle it)&lt;/p&gt; &lt;p&gt;Recently I experienced it again. (Although, to this developers credit, he understood the problem as soon as I explained it.) &lt;/p&gt; &lt;p&gt;The problem again had to do with performance testing. In our application, we need to do calculations on various products and, understandably, the various calculations were different. The developer then came back with the following results (timings given are ficticious but indicative)&lt;/p&gt; &lt;p&gt;Prod1: 0.01 ms&lt;/p&gt; &lt;p&gt;Prod2: 0.01 ms&lt;/p&gt; &lt;p&gt;Prod3: 0.05 ms&lt;/p&gt; &lt;p&gt;Prod4: 0.70 ms&lt;/p&gt; &lt;p&gt;Average time 0.19 ms&lt;/p&gt; &lt;p&gt;Now this average looks acceptable (as a response time), except that most of our users will actually choose Prod4. I.e. their "average" is actually 0.7 ms and NOT 0.17 ms. Almost half a second difference.&lt;/p&gt; &lt;p&gt;So, what am I trying to get accross. Make sure your average is really the average you think it is. ;)&lt;/p&gt; &lt;p&gt;Greets&lt;/p&gt; &lt;p&gt;Roaan&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;;subject=Beware+of+Averages" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;;title=Beware+of+Averages" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;title=Beware+of+Averages" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;;title=Beware+of+Averages" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx&amp;amp;;title=Beware+of+Averages&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/02/16/beware-of-averages.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=104876" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author><category term="Software Dev" scheme="http://dotnet.org.za/roaan/archive/tags/Software+Dev/default.aspx" /></entry><entry><title>Happiness is..</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx" /><id>http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx</id><published>2007-01-25T14:01:48Z</published><updated>2007-01-25T14:01:48Z</updated><content type="html">&lt;p&gt;A new IBM/Lenovo Thinkpad Z61p&lt;/p&gt; &lt;p&gt;- 2 Gb RAM&lt;/p&gt; &lt;p&gt;- 100 Gb HD (7200 RPM)&lt;/p&gt; &lt;p&gt;- Core 2 Duo&lt;/p&gt; &lt;p&gt;- 15.4" Screen&lt;/p&gt; &lt;p&gt;- ThinkVantage software suite&lt;/p&gt; &lt;p&gt;- and.........keyboard drainage holes&lt;/p&gt; &lt;p&gt;What more would one want?&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;;subject=Happiness+is.." target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;;title=Happiness+is.." target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;title=Happiness+is.." target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;;title=Happiness+is.." target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx&amp;amp;;title=Happiness+is..&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/happiness-is.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=94774" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Testing Live Writer again</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx" /><id>http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx</id><published>2007-01-25T13:52:50Z</published><updated>2007-01-25T13:52:50Z</updated><content type="html">&lt;p&gt;This is mainly to see if the photo plugin works.&lt;/p&gt; &lt;p&gt;&lt;a href="http://dotnet.org.za/blogs/roaan/WindowsLiveWriter/TestingLiveWriteragain_C2B7/image%7B0%7D%5B8%5D.png"&gt;&lt;img height="59" src="http://dotnet.org.za/blogs/roaan/WindowsLiveWriter/TestingLiveWriteragain_C2B7/image%7B0%7D_thumb%5B4%5D.png" width="62" align="left"&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;The picture to the left is a image of windows live writer&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;;subject=Testing+Live+Writer+again" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;;title=Testing+Live+Writer+again" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;title=Testing+Live+Writer+again" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;;title=Testing+Live+Writer+again" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx&amp;amp;;title=Testing+Live+Writer+again&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2007/01/25/testing-live-writer-again.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=94772" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Checking out Windows Live Writer</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx</id><published>2006-08-14T11:24:44Z</published><updated>2006-08-14T11:24:44Z</updated><content type="html">&lt;p&gt;So found the link via dotnet.org.&lt;/p&gt; &lt;p&gt;Now I'm also gonna post a code example.&lt;/p&gt; &lt;p&gt;Does ne1 know of a way to post something from live writer without it displaying on the main dotnet.org feed ?&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;;subject=Checking+out+Windows+Live+Writer" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;;title=Checking+out+Windows+Live+Writer" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;title=Checking+out+Windows+Live+Writer" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;;title=Checking+out+Windows+Live+Writer" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx&amp;amp;;title=Checking+out+Windows+Live+Writer&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/08/14/Checking-out-Windows-Live-Writer.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=55083" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Multiple UserControl Issues</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx</id><published>2006-05-27T06:44:05Z</published><updated>2006-05-27T06:44:05Z</updated><content type="html">&lt;P&gt;I want to derive some control of the base .net WinForm controls (e.g. TextBox) in order to set the look&amp;amp;feel of the control once, and then reuse this derived control throughout my application. This way, if I want to change, lets say, the colour, I only need to go to the derived control, change the colour and all the textboxes should have the new colour. (Unless the forms themselves specify a different colour) &lt;/P&gt; &lt;P&gt;That's the theory. &lt;/P&gt; &lt;P&gt;In practice I'm struggling to make this work (in VS2005). &lt;/P&gt; &lt;P&gt;If I drag this control onto the form once, everything works fine and according to theory. &lt;/P&gt; &lt;P&gt;However, as soon as I drag the control onto the form a second time, somehow the form detects the color of the control and hardcodes it into the form designer code. The effect of this is that if I then go and change the derived control's colour, it is not reflected in the form when I run the application. &lt;/P&gt; &lt;P&gt;A workaround is to use composition instead of inheritance but that is more work. &lt;/P&gt; &lt;P&gt;Can anyone shed some light on the subject? &lt;/P&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;;subject=Multiple+UserControl+Issues" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;;title=Multiple+UserControl+Issues" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;title=Multiple+UserControl+Issues" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;;title=Multiple+UserControl+Issues" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx&amp;amp;;title=Multiple+UserControl+Issues&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/27/52705.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=52705" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>UserControl Problem</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx</id><published>2006-05-26T05:26:46Z</published><updated>2006-05-26T05:26:46Z</updated><content type="html">&lt;P&gt;   I want to derive some control of the base .net WinForm controls (e.g. TextBox) in order to set the look&amp;amp;feel of the control once, and then reuse this derived control throughout my application. This way, if I want to change, lets say, the colour, I only need to go to the derived control, change the colour and all the textboxes should have the new colour. (Unless the forms themselves specify a different colour) &lt;/P&gt; &lt;P&gt;   That's the theory. &lt;/P&gt; &lt;P&gt;   In practice I'm struggling to make this work (in VS2005). &lt;/P&gt; &lt;P&gt;   If I drag this control onto the form once, everything works fine and according to theory. &lt;/P&gt; &lt;P&gt;   However, as soon as I drag the control onto the form a second time, somehow the form detects the color of the control and hardcodes it into the form designer code. The effect of this is that if I then go and change the derived control's colour, it is not reflected in the form when I run the application. &lt;/P&gt; &lt;P&gt;   A workaround is to use composition instead of inheritance but that is more work. &lt;/P&gt; &lt;P&gt;   Can anyone shed some light on the subject? &lt;/P&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;;subject=UserControl+Problem" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;;title=UserControl+Problem" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;title=UserControl+Problem" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;;title=UserControl+Problem" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx&amp;amp;;title=UserControl+Problem&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/26/52679.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=52679" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>MSDN Search</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx</id><published>2006-05-08T10:14:06Z</published><updated>2006-05-08T10:14:06Z</updated><content type="html">&lt;P&gt;Does anyone know how to use the new (VS2005) MSDN ?&lt;/P&gt; &lt;P&gt;Or more specifically how to search for content that contain two or more words (not phrases).&lt;/P&gt; &lt;P&gt;I tried doing a search by specifying the two words, but then it does an "OR" search.&lt;/P&gt; &lt;P&gt;Can anyone help on how to do an "AND" search ?&lt;/P&gt; &lt;P&gt; &lt;/P&gt; &lt;P&gt;PS. Can anyone point me to info on setting up Infragistics UltraTree with recursive custom object (i.e. not datatables)&lt;/P&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;;subject=MSDN+Search" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;;title=MSDN+Search" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;title=MSDN+Search" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;;title=MSDN+Search" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx&amp;amp;;title=MSDN+Search&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52134.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=52134" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>HTTP Debugger</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx</id><published>2006-05-08T08:23:45Z</published><updated>2006-05-08T08:23:45Z</updated><content type="html">&lt;P&gt;A collegue of mine introduced me to &lt;A title="HTTP Debugger" href="http://www.xk72.com/charles/"&gt;Charles&lt;/A&gt;. It's an HTTP proxy that intercepts your web requests. Using this, you can inspect the requests a web site makes as well as the responses it receives. Not only does it show you the content of the HTTP requests/responses, but also the time the request/response took as well as the size of the response. But that's not all....if you phone now...(I digress) it also has throttling capability built in. This allows you to emulate a modem or various other connection lines.&lt;/P&gt; &lt;P&gt; &lt;/P&gt; &lt;P&gt;We found it very usefull to determine the usability of our website and using it was definately an eye opener.&lt;/P&gt; &lt;P&gt; &lt;/P&gt; &lt;P&gt;Very Cool :D&lt;/P&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;;subject=HTTP+Debugger" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;;title=HTTP+Debugger" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;title=HTTP+Debugger" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;;title=HTTP+Debugger" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx&amp;amp;;title=HTTP+Debugger&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/05/08/52129.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=52129" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Casting - Which form is better</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx</id><published>2006-04-01T13:49:41Z</published><updated>2006-04-01T13:49:41Z</updated><content type="html">&lt;p&gt;When casting (in C#) you generally have two options.&lt;/p&gt;
&lt;li&gt;(Foo)myObj&lt;/li&gt;
&lt;li&gt;myObj as Foo&lt;/li&gt;
&lt;p&gt;Typicall, when I&amp;rsquo;m going to cast only one once and want to call a method on the casted object, I use&lt;/p&gt;
&lt;p&gt;((Foo)myObj).Bar()&lt;/p&gt;
&lt;p&gt;The other day, I saw someone write&lt;/p&gt;
&lt;p&gt;(myObj as Foo).Bar()&lt;/p&gt;
&lt;p&gt;Which do you use (Vote &lt;a title="Voting Poll" href="http://dotnet.org.za/forums/thread/51214.aspx"&gt;here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;;subject=Casting+-+Which+form+is+better" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;;title=Casting+-+Which+form+is+better" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;title=Casting+-+Which+form+is+better" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;;title=Casting+-+Which+form+is+better" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx&amp;amp;;title=Casting+-+Which+form+is+better&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/04/01/51215.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=51215" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author><category term="Software Dev" scheme="http://dotnet.org.za/roaan/archive/tags/Software+Dev/default.aspx" /></entry><entry><title>Opensource Win Program</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx</id><published>2006-03-18T22:26:25Z</published><updated>2006-03-18T22:26:25Z</updated><content type="html">&lt;p&gt;A small list of opensource windows programs can be found &lt;a href="http://www.opensourcewindows.org/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;(At least the icons look nice)&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;;subject=Opensource+Win+Program" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;;title=Opensource+Win+Program" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;title=Opensource+Win+Program" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;;title=Opensource+Win+Program" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx&amp;amp;;title=Opensource+Win+Program&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/03/18/50983.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=50983" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Generic or TypeCast</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx</id><published>2006-02-07T00:01:17Z</published><updated>2006-02-07T00:01:17Z</updated><content type="html">&lt;p&gt;Let&amp;rsquo;s say I have a factory method that creates an instance of an object (e.g. I wrap Activator.CreateInstance).&lt;/p&gt;
&lt;p&gt;I have 2 options&lt;/p&gt;
&lt;p&gt;1) public object Create (string className) {return Activator.Create&amp;hellip;&amp;hellip;.;}&lt;/p&gt;
&lt;p&gt;2) public T Create&amp;lt;T&amp;gt; (string className) {return (T) Activator.Create&amp;hellip;&amp;hellip;;}&lt;/p&gt;
&lt;p&gt;The client code will then be one of&lt;/p&gt;
&lt;p&gt;1) MyObj obj= (MyObj)Create (&amp;ldquo;myObjKey&amp;rdquo;);&lt;/p&gt;
&lt;p&gt;2) MyObj obj= Create&amp;lt;MyObj&amp;gt; (&amp;ldquo;myObjKey&amp;rdquo;);&lt;/p&gt;
&lt;p&gt;Which would you prefer ?&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;;subject=Generic+or+TypeCast" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;;title=Generic+or+TypeCast" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;title=Generic+or+TypeCast" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;;title=Generic+or+TypeCast" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx&amp;amp;;title=Generic+or+TypeCast&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/02/07/49948.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=49948" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Why not "Close All"</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx</id><published>2006-01-12T18:37:06Z</published><updated>2006-01-12T18:37:06Z</updated><content type="html">&lt;p&gt;In VS.Net 2003 you could close the current open document tab by right clicking on it and selecting &amp;ldquo;Close&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;VS.Net 2005 takes this one step further and allows you to select &amp;ldquo;Close all but this&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;So my question. Why did they not add a &amp;ldquo;Close All&amp;rdquo; option? Quite often I&amp;rsquo;ve got a number of documents opened that is related to one &amp;ldquo;idea&amp;rdquo; (e.g. task or whatever) and when I want to start working on the next &amp;ldquo;idea&amp;rdquo; I want to close all the open documents and start opening the documents I need for the new &amp;ldquo;idea&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;Now I&amp;nbsp;need 2 clicks. One to &amp;ldquo;Close all but this&amp;rdquo; and another to &amp;ldquo;Close&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;If I&amp;rsquo;m missing something I&amp;rsquo;d be more than happy to learn a new trick&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;;subject=Why+not+%26quot%3bClose+All%26quot%3b" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;;title=Why+not+%26quot%3bClose+All%26quot%3b" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;title=Why+not+%26quot%3bClose+All%26quot%3b" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;;title=Why+not+%26quot%3bClose+All%26quot%3b" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx&amp;amp;;title=Why+not+%26quot%3bClose+All%26quot%3b&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/12/49173.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=49173" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry><entry><title>Computer Screen Setup</title><link rel="alternate" type="text/html" href="http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx" /><id>http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx</id><published>2006-01-10T23:03:59Z</published><updated>2006-01-10T23:03:59Z</updated><content type="html">&lt;p&gt;At a client site today, we received new PCs and today I had to setup my screen (19&amp;rdquo; Dell). This proved extremely difficult, and as yet I do not have it setup&amp;nbsp;properly yet. Why do screen manufacturers make it so difficult to setup a 19&amp;rdquo; (and even 17&amp;rdquo;) monitor so that the whole display area can be used. The problem I have currently is that my horizontal borders (top and bottom) are not parallel. One would expect the monitor setup menu to have an option for adjusting this&amp;hellip; One would expect wrong&amp;hellip;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I can change almost anything, including the ability to adjust the vertical borders (i.e. left and right) to make them parallel but I can&amp;rsquo;t find a way to adjust the horizontal borders. The best of all is that I didn&amp;rsquo;t need and don&amp;rsquo;t want to adjust the vertical borders since they are displayed properly.&lt;/p&gt;
&lt;p&gt;What gives?&lt;/p&gt;
&lt;p&gt;PS. Thanks Armand for the upgrade to CS 2. It looks great! It&amp;rsquo;s really appreciated that somehow you sqeeze in time between development and comrades&amp;nbsp;&lt;img src="http://www.pannsoft.com/blog/blogpics/smile3.gif" /&gt;&amp;nbsp;to keep the site running as smooth as it does.&lt;/p&gt;
&lt;div class = "shareblock"&gt;&lt;strong&gt;Share this post:&lt;/strong&gt; &lt;a href = "mailto:?body=Thought you might like this: http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;;subject=Computer+Screen+Setup" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;email it!&lt;/a&gt; |  &lt;a href = "http://del.icio.us/post?url=http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;;title=Computer+Screen+Setup" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;bookmark it!&lt;/a&gt; |  &lt;a href = "http://www.digg.com/submit?url=http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;;phase=2" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;digg it!&lt;/a&gt; |  &lt;a href = "http://reddit.com/submit?url=http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;title=Computer+Screen+Setup" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;reddit!&lt;/a&gt; |  &lt;a href = "http://www.dotnetkicks.com/submit/?url=http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;;title=Computer+Screen+Setup" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;kick it!&lt;/a&gt; |  &lt;a href = "https://favorites.live.com/quickadd.aspx?marklet=1&amp;amp;;mkt=en-us&amp;amp;;url=http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx&amp;amp;;title=Computer+Screen+Setup&amp;amp;;top=1" target="_blank" title = "Post http://dotnet.org.za/roaan/archive/2006/01/10/49062.aspx"&gt;live it!&lt;/a&gt;&lt;/div&gt;&lt;img src="http://dotnet.org.za/aggbug.aspx?PostID=49062" width="1" height="1"&gt;</content><author><name>roaan</name><uri>http://dotnet.org.za/members/roaan.aspx</uri></author></entry></feed>