User Joe Schmoe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T01:36:36Z http://stackoverflow.com/feeds/user/92232 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1372347/why-does-microsoft-not-force-silverlight-onto-users-machines-through-a-windows-up 3 Why does Microsoft not force Silverlight onto users machines through a Windows update? Joe Schmoe 2009-09-03T09:15:57Z 2009-09-03T15:16:11Z <p>I'm not a Silverlight developer (yet) and what is putting me off - and many others, I think - is the relative lack of browser installations of it compared to Flash.</p> <p>But I'm not clear on why website visitors have to explicitly install Silverlight themselves - which appears to be the major stumbling block.</p> <p>Since the vast majority of computer users use Windows, is there a reason that Microsoft are not forcing Silverlight onto Windows machines through a Windows update?</p> <p>They do this (and continue to do so) with the .NET framework runtimes, so why not with Silverlight? Legal issue, perhaps?</p> http://stackoverflow.com/questions/1116156/silverlight-3-released-has-the-time-come-to-take-silverlight-seriously 8 Silverlight 3 released - Has the time come to take Silverlight seriously? Joe Schmoe 2009-07-12T14:51:02Z 2009-07-17T03:43:31Z <p>As an ASP.NET developer, I've been eyeing Silverlight from a distance for a while now.</p> <p>But I've been burned by jumping on the Microsoft bandwagon too early in the past when their projects get radically overhauled or binned.</p> <p>I've been reading some good reviews about Silverlight 3.0 recently.</p> <p>So have we reached the point where, as a mainstream ASP.NET developer, it's worth investing the time and effort to get to grips with it?</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1113315/idle-for-more-than-two-weeks-no-real-development-what-shall-i-do/1113338#1113338 3 Answer by Joe Schmoe for Idle for more than two weeks, no real development, what shall I do? Joe Schmoe 2009-07-11T09:36:04Z 2009-07-11T10:09:36Z <p>Ask &amp; answer questions on Stack Overflow - at least somebody else benefits from your free time.</p> http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming/1113360#1113360 1 Answer by Joe Schmoe for How can I get addicted to programming? Joe Schmoe 2009-07-11T09:50:51Z 2009-07-11T09:50:51Z <p>In this quote lies the key to getting "addicted" to something positive.</p> <blockquote> <p>The incentive of attention is interest; the greater the interest, the greater the attention; the greater the attention, the greater the interest, action and reaction; begin by paying attention; before long you will have aroused interest; this interest will attract more attention, and this attention will produce more interest, and so on. This practice will enable you to cultivate the power of attention.</p> </blockquote> <p>The quote comes from <a href="http://www.psitek.net/pages/PsiTekTMKS37.html" rel="nofollow">this link</a></p> <p>It was written about a 100 years ago by a man named Charles F Haanel in a book called <a href="http://www.psitek.net/pages/PsiTekTMKSContents.html" rel="nofollow">The Master Key System</a></p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1113247/combo-box-in-datagrid/1113311#1113311 0 Answer by Joe Schmoe for combo box in datagrid Joe Schmoe 2009-07-11T09:18:23Z 2009-07-11T09:18:23Z <p>The easiest way is to use the "Add" method of your ComboBox:</p> <pre><code>// Add item "test" to ComboBox with name comboBox1 comboBox1.Items.Add("test"); </code></pre> http://stackoverflow.com/questions/1107239/is-there-anyway-to-get-programming-books-in-a-spiral-bound-format/1107246#1107246 1 Answer by Joe Schmoe for Is there anyway to get programming books in a spiral bound format? Joe Schmoe 2009-07-10T01:14:10Z 2009-07-10T01:14:10Z <p>I have a different approach. Get a second widescreen monitor, rotate it into portrait mode and now get ebook versions of your favorite programming books.</p> <p>You now have a full page view of the book on one monitor and your IDE on the other. Works a treat.</p> http://stackoverflow.com/questions/1107170/c-argument-validation-null-empty-strings/1107186#1107186 2 Answer by Joe Schmoe for C#: Argument validation: null/empty strings Joe Schmoe 2009-07-10T00:52:26Z 2009-07-10T00:52:26Z <p>You might find this link on <a href="http://www.codinginstinct.com/2008/05/argument-validation-using-attributes.html" rel="nofollow">Argument validation using attributes and method interception</a> useful</p> http://stackoverflow.com/questions/1107069/how-can-i-hide-the-drop-down-arrow-of-a-datagridviewcomboboxcolumn-like-visual-st/1107145#1107145 1 Answer by Joe Schmoe for How can I hide the drop-down arrow of a DataGridViewComboBoxColumn like Visual Studio Properties window? Joe Schmoe 2009-07-10T00:34:58Z 2009-07-10T00:44:42Z <p>In the <code>DataGridViewComboBoxColumn</code>, there is a property called <code>DisplayStyle</code>. Set it to <code>Nothing</code> to hide the DropDownButton</p> <p>Further information about the <code>DataGridViewComboBoxDisplayStyle</code> enumeration is available at this <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcomboboxdisplaystyle.aspx" rel="nofollow">MSDN link</a></p> http://stackoverflow.com/questions/1100442/detailsview-preview-mode/1100498#1100498 0 Answer by Joe Schmoe for DetailsView Preview mode ? Joe Schmoe 2009-07-08T20:57:32Z 2009-07-08T20:57:32Z <p>Not totally clear on what you're asking.</p> <p>If you are looking to inspect or modify data before it is inserted into the table you could look at the <strong>DetailsView.ItemInserting</strong> Event </p> <p>The <strong>ItemInserting</strong> event is raised when an Insert button within a DetailsView control is clicked, but before the insert operation. This allows you to provide an event handler that performs a custom routine, such as canceling the insert operation, whenever this event occurs.</p> <p>You can find further information at this <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.detailsview.iteminserting.aspx" rel="nofollow">MSDN link</a></p> http://stackoverflow.com/questions/1094778/volunteer-for-a-potential-employer/1095015#1095015 0 Answer by Joe Schmoe for Volunteer for a potential employer? Joe Schmoe 2009-07-07T21:35:37Z 2009-07-07T21:35:37Z <p>To be honest, I would cut my losses and move on. You'll find it less depressing in the long run.</p> <p>It's like trying to chase after a girl when you've already blown it with her on your first date. No matter how hard you try, it won't feel like the first time again for either of you (you've already formed your first impressions)...and you can come across as needy and desperate, even if you're not.</p> <p>You've had your opportunity, you've learned a lesson from it. Now direct your focus to whatever comes next.</p> http://stackoverflow.com/questions/1092784/how-to-control-elements-on-a-asp-net-master-page-from-child-page/1092798#1092798 2 Answer by Joe Schmoe for How to control elements on a asp.net master page from child page Joe Schmoe 2009-07-07T14:51:12Z 2009-07-07T15:04:51Z <p>Here's an example of how to communicate with Master Pages from Child Pages.</p> <p>In the master page, create a property for the control you wish to access, say a label called lblUser...</p> <pre><code>public string MyProperty { set { lblUser.Text = value; } } </code></pre> <p>In the child page, access the property you have just created as in the following example...</p> <pre><code>((MyMaster)this.Master).MyProperty = "Text changed from Sub Page"; </code></pre> <p>We are able to do this because the Master is simply a class that inherits System.Web.UI.MasterPage. </p> <p>And the Label.Text property that we created is just a property of the Master class (this name will be the specific name of your current Master Page, in this case MyMaster).</p> <p>Notice it won't work without a cast to your specific Master Page class and this is because you added a field that does not exist in System.Web.UI.MasterPage, the type of this.Master, but in your specific Master Class. </p> http://stackoverflow.com/questions/1092307/if-objects-are-passed-by-reference-in-c-what-is-ref-good-for-then/1092360#1092360 0 Answer by Joe Schmoe for if objects are passed by reference in c#, what is ref good for then? Joe Schmoe 2009-07-07T13:31:52Z 2009-07-07T13:31:52Z <p>What is <strong>ref</strong> good for? </p> <p>Interview questions, of course.</p> http://stackoverflow.com/questions/1090078/counting-files-in-a-directory-using-net/1090095#1090095 1 Answer by Joe Schmoe for Counting files in a directory using .Net Joe Schmoe 2009-07-07T02:26:08Z 2009-07-07T02:26:08Z <p>It may be unweildy but if you run a test and find the performance impact is minimal, it might still be the appropriate solution.</p> http://stackoverflow.com/questions/1088593/how-to-clean-visual-studio-bin-and-obj-folders/1088606#1088606 1 Answer by Joe Schmoe for How to clean Visual Studio bin and obj folders Joe Schmoe 2009-07-06T18:42:24Z 2009-07-06T18:42:24Z <p>This <a href="http://www.dotnet2themax.com/blogs/fbalena/PermaLink,guid,4f594446-332a-4c97-a8c0-b66e66f649b3.aspx" rel="nofollow">little utility</a> might be want you want.</p> <p>It also deletes *.suo and *.user files and produces a report of all the files and folders that couldn't be deleted for any reason</p> http://stackoverflow.com/questions/1088283/is-there-hard-information-on-the-relative-productivity-of-top-programmers/1088488#1088488 0 Answer by Joe Schmoe for Is there hard information on the relative productivity of top programmers? Joe Schmoe 2009-07-06T18:19:49Z 2009-07-06T18:25:50Z <p>The Pareto Principle (also known as The 80/20 Principle) lies behind a lot of non-intuitive statistical outcomes throughout Life, The Universe and Everything.</p> <p>In it's crudest form, approx 80% of the outputs from a system can be accounted for by approx 20% of the inputs.</p> <p>Applying it to this case, approx 80% of the productivity comes from approx 20% of the developers.</p> <p>Yes, this isn't a hard study but I think it accounts for some of the inner reasoning behind many managers who assume the principle applies to software development...which, just through personal observation, I think it probably does.</p> <p><a href="http://en.wikipedia.org/wiki/Richard%5FKoch" rel="nofollow">Richard Koch</a> is the name to Google for if you want to find out more about this natural phenomenon.</p> http://stackoverflow.com/questions/1087105/how-to-compare-values-in-array/1087154#1087154 1 Answer by Joe Schmoe for How to Compare Values in Array Joe Schmoe 2009-07-06T14:03:33Z 2009-07-06T14:03:33Z <p>I think using <code>List&lt;T&gt;.TrueForAll</code> would be a slick approach.</p> <p><a href="http://msdn.microsoft.com/en-us/library/kdxe4x4w.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/kdxe4x4w.aspx</a></p> http://stackoverflow.com/questions/1083164/c-downloading-video-from-youtube/1083174#1083174 1 Answer by Joe Schmoe for C#: Downloading video from YouTube Joe Schmoe 2009-07-04T23:32:19Z 2009-07-04T23:32:19Z <p>Try this: <a href="http://www.codeproject.com/KB/IP/MyDownloader.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/MyDownloader.aspx</a></p> http://stackoverflow.com/questions/1082311/why-should-a-net-struct-be-less-than-16-bytes 4 Why should a .NET struct be less than 16 bytes? Joe Schmoe 2009-07-04T14:36:47Z 2009-07-04T15:44:04Z <p>I've read in a few places now that the maximum instance size for a struct should be 16 bytes.</p> <p>But I cannot see where that number (16) comes from.</p> <p>Browsing around the net, I've found some who suggest that it's an approximate number for good performance but Microsoft talk like it is a hard upper limit. (e.g. <a href="http://msdn.microsoft.com/en-us/library/ms229017.aspx" rel="nofollow">MSDN</a> )</p> <p>Does anyone have a definitive answer about why it is 16 bytes?</p> http://stackoverflow.com/questions/1033434/how-to-write-my-own-proxy-anonymizer-and-host-it-to-help-when-websites-are-block/1033497#1033497 1 Answer by Joe Schmoe for How to write my own proxy, anonymizer and host it to help when websites are blocked at work Joe Schmoe 2009-06-23T15:56:16Z 2009-06-23T15:56:16Z <p>Sounds like hard work to write your own. One place I worked, I used <a href="http://www.gotomypc.com" rel="nofollow">GoToMyPC</a> to access my machine at home and browse to any blocked sites from that machine. GoToMyPC was an authorized tool because it allowed people to work from home and didn't haven't firewall implications.</p> http://stackoverflow.com/questions/1027504/using-regions-in-c-is-considered-bad-practice/1027559#1027559 1 Answer by Joe Schmoe for using regions in C# is considered bad practice ? Joe Schmoe 2009-06-22T14:35:41Z 2009-06-22T14:35:41Z <p>I don't have enough reputation to post a comment to your question...but I don't see any reference in that article to regions having a performance impact.</p> http://stackoverflow.com/questions/1027271/how-is-a-software-team-formed-and-what-kinds-of-roles-do-the-members-play/1027357#1027357 1 Answer by Joe Schmoe for How is a software team formed and what kinds of roles do the members play? Joe Schmoe 2009-06-22T13:58:37Z 2009-06-22T13:58:37Z <p>I've only worked in fairly small companies in the UK and this process sounds a lot more organized than anything I've seen at most of those.</p> http://stackoverflow.com/questions/1024959/beginning-asp-net-here-are-my-novice-questions/1025119#1025119 0 Answer by Joe Schmoe for Beginning ASP.NET, here are my novice questions Joe Schmoe 2009-06-22T00:22:49Z 2009-06-22T02:26:34Z <p>I would start with WebForms first.</p> <p>For someone in your position, I would recommend working through a copy of <a href="http://rads.stackoverflow.com/amzn/click/1590598911" rel="nofollow">Beginning ASP.NET 3.5 in C#2008: From Novice To Professional - Second Edition</a> by Matthew MacDonald.</p> <p>It's one of those rare, helpful books that tells you <strong>why</strong> things are done in certain ways in ASP.NET development rather than just the <strong>how</strong>.</p> http://stackoverflow.com/questions/999533/software-platform-to-share-specs/1025266#1025266 1 Answer by Joe Schmoe for Software/Platform to Share Specs Joe Schmoe 2009-06-22T02:12:00Z 2009-06-22T02:12:00Z <p>You could take a look at <a href="http://office.microsoft.com/en-gb/groove/default.aspx" rel="nofollow">Microsoft Groove</a> - the collaboration software that Microsoft bought a few years back.</p> <p>It's bundled free with premium versions of Microsoft Office.</p> <p>You can customize the workspace with discussion boards and can fairly seamlessly store collaboratively-edited Office documents.</p> http://stackoverflow.com/questions/1024739/how-to-reference-a-self-made-assembly-that-is-installed-in-the-gac-in-visual-stud/1025135#1025135 1 Answer by Joe Schmoe for How to reference a self made assembly that is installed in the GAC in visual studio? Joe Schmoe 2009-06-22T00:34:10Z 2009-06-22T00:34:10Z <p>When you need to reference an assembly that has been deployed to the GAC, you will need to browse to the \bin\Debug directory of the original project via the Browse tab of the Add Reference dialog in Visual Studio.</p> <p>The reason this works is that since you've installed the assembly into the GAC, it will have a strong name and therefore a .publickey value in the manifest.</p> <p>When you reference an assembly whose manifest contains a .publickey value, Visual Studio assumes the strongly named assembly will most likely be deployed to the GAC, and therefore does not bother to copy the binary to your application folder.</p> <p>Instead, it will use the version in the GAC.</p> http://stackoverflow.com/questions/986450/do-you-really-need-a-text-attribute-in-an-asp-net-label 1 Do you really need a Text attribute in an ASP.NET Label? Joe Schmoe 2009-06-12T12:45:34Z 2009-06-12T19:17:52Z <p>What is the difference between the following? </p> <pre><code>&lt;asp:Label runat="server"&gt;Hello World&lt;/asp:Label&gt; &lt;asp:Label runat="server" Text="Hello World"&gt;&lt;/asp:Label&gt; </code></pre> <p><hr /></p> <p><strong>UPDATED:</strong></p> <p>If they are exactly the same then why does</p> <pre><code>&lt;asp:Label ID="Label1" runat="server"&gt; There were &lt;%#transactionCount%&gt; transactions today &lt;/asp:Label&gt; </code></pre> <p>bind correctly when using single-value databinding and displays the correct value for transactionCount, while...</p> <pre><code>&lt;asp:Label ID="Label1" runat="server" Text="There were &lt;%#transactionCount%&gt; transactions today"&gt; &lt;/asp:Label&gt; </code></pre> <p>does not show a value for transactionCount in the page?</p> <p><hr /></p> <p><strong>UPDATED AGAIN:</strong></p> <p>I understand the points being made about using the Literal controls. I shall slap my face accordingly - but it still doesn't solve the problem - though is perhaps getting closer to a solution.</p> <p>If I use... </p> <pre><code>&lt;asp:Literal ID="Label1" runat="server" Text="&lt;%#transactionCount%&gt;"&gt;&lt;/asp:Literal&gt; </code></pre> <p>...I see transactionCount's value show up in the web page.</p> <p>On the other hand, if I put any character or word in front of the single-value databinding field e.g. </p> <pre><code>&lt;asp:Literal ID="Label1" runat="server" Text="No. &lt;%#transactionCount%&gt;"&gt;&lt;/asp:Literal&gt; </code></pre> <p>...transactionCount does not appear.</p> http://stackoverflow.com/questions/809702/what-tools-do-you-use-as-a-programmer-to-save-time/809899#809899 0 Answer by Joe Schmoe for What tools do you use as a programmer to save time? Joe Schmoe 2009-05-01T01:51:02Z 2009-05-01T01:51:02Z <p>Apply the 80/20 rule...</p> <p>20% of your code will produce 80% of what is needed for the project. Keep your focus on that 20%.</p> http://stackoverflow.com/questions/771016/what-does-your-workplace-look-like/771457#771457 1 Answer by Joe Schmoe for What does your workplace look like? Joe Schmoe 2009-04-21T07:32:57Z 2009-04-21T07:32:57Z <p>I work from home...</p> <p><img src="http://www.belchfire.net/screenshots/%5B5812%5DTranquil%5FNight.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1933/how-do-you-beat-procrastination/769834#769834 0 Answer by Joe Schmoe for How do you beat procrastination? Joe Schmoe 2009-04-20T19:52:00Z 2009-04-20T19:52:00Z <p>Try using a new time management system called AutoFocus.</p> <p>It's free and works like nothing I've ever tried before...and I've pretty much tried them all up to now.</p> <p><a href="http://www.markforster.net/autofocus-system/" rel="nofollow">http://www.markforster.net/autofocus-system/</a></p> http://stackoverflow.com/questions/59561/what-tools-techniques-can-benefit-a-solo-developer/769829#769829 1 Answer by Joe Schmoe for What tools/techniques can benefit a solo developer? Joe Schmoe 2009-04-20T19:49:47Z 2009-04-20T19:49:47Z <p>Try using a new time management system called AutoFocus.</p> <p>It's free and works like nothing I've ever tried before...and I've pretty much tried them all up to now.</p> <p><a href="http://www.markforster.net/autofocus-system/" rel="nofollow">http://www.markforster.net/autofocus-system/</a></p> http://stackoverflow.com/questions/54166/handling-information-overflow/767457#767457 1 Answer by Joe Schmoe for Handling Information overflow Joe Schmoe 2009-04-20T08:51:08Z 2009-04-20T08:51:08Z <p>I would apply "80/20 principle" thinking to this. Google "Richard Koch" for the world expert on this approach.</p> <p>Effectively it means that 20% of inputs to anything will generally provide 80% of outputs from it</p> <p>This means that learning about 20% of any new technology you come across will provide you with 80% of what you need to know about it.</p> <p>And 20% of the technologies out there will be used by 80% of the people - so just stick to learning in detail what the vast majority of developers already vouch for.</p> <p>And even if you do decide to learn something in detail, bear in mind that you'll be able to do 80% of everything you'll ever need to do with it from learning just the core 20% of it.</p> http://stackoverflow.com/questions/1372347/why-does-microsoft-not-force-silverlight-onto-users-machines-through-a-windows-up/1374053#1374053 Comment by Joe Schmoe on Why does Microsoft not force Silverlight onto users machines through a Windows update? Joe Schmoe 2009-09-04T22:33:40Z 2009-09-04T22:33:40Z I think you make some good points here - and it's easy to forget that the main competitor, Flash, also needs to be installed manually. http://stackoverflow.com/questions/1123615/why-doesnt-this-overflow/1123639#1123639 Comment by Joe Schmoe on Why doesn't this overflow? Joe Schmoe 2009-07-14T08:36:09Z 2009-07-14T08:36:09Z I didn't downvote you but (outside of a Zen philosophy) how can an answer be another question? http://stackoverflow.com/questions/1123737/postbacktrigger-for-button-in-gridview Comment by Joe Schmoe on PostBackTrigger for button in gridview Joe Schmoe 2009-07-14T08:30:12Z 2009-07-14T08:30:12Z You haven't included the code you are referring to. http://stackoverflow.com/questions/1113456/coding-increases-my-self-confidence Comment by Joe Schmoe on Coding increases my self-confidence Joe Schmoe 2009-07-11T10:57:13Z 2009-07-11T10:57:13Z &quot;Coding increases my self-confidence&quot; is a statement, not a question http://stackoverflow.com/questions/1107069/how-can-i-hide-the-drop-down-arrow-of-a-datagridviewcomboboxcolumn-like-visual-st/1107145#1107145 Comment by Joe Schmoe on How can I hide the drop-down arrow of a DataGridViewComboBoxColumn like Visual Studio Properties window? Joe Schmoe 2009-07-11T06:20:15Z 2009-07-11T06:20:15Z In that case, it might be a good idea to mark it as the accepted answer http://stackoverflow.com/questions/1106719/first-programming-language-after-web-development/1106754#1106754 Comment by Joe Schmoe on First programming language after web development? Joe Schmoe 2009-07-10T01:28:58Z 2009-07-10T01:28:58Z Upvoted - because it's nearly the weekend http://stackoverflow.com/questions/1107239/is-there-anyway-to-get-programming-books-in-a-spiral-bound-format/1107246#1107246 Comment by Joe Schmoe on Is there anyway to get programming books in a spiral bound format? Joe Schmoe 2009-07-10T01:20:45Z 2009-07-10T01:20:45Z I think there's a growing trend for programming book publishers to provide an ebook version with the physical book, so you could always use the physical book for your commute and stay digital in front of the computer http://stackoverflow.com/questions/1103851/what-are-the-best-practices-tools-for-a-team-of-7-developers-working-in-visual-st/1103923#1103923 Comment by Joe Schmoe on What are the best practices/tools for a team of 7 developers working in Visual Studio Proffessional ? Joe Schmoe 2009-07-09T13:38:58Z 2009-07-09T13:38:58Z I third ReSharper - you don't realize how integral it becomes to your daily development until you have to use someone's machine without it installed http://stackoverflow.com/questions/1099662/will-software-development-ever-be-consolidated/1099918#1099918 Comment by Joe Schmoe on Will software development ever be consolidated? Joe Schmoe 2009-07-08T20:29:47Z 2009-07-08T20:29:47Z Yeah, but his baby was created iteratively http://stackoverflow.com/questions/1099662/will-software-development-ever-be-consolidated/1099686#1099686 Comment by Joe Schmoe on Will software development ever be consolidated? Joe Schmoe 2009-07-08T18:22:46Z 2009-07-08T18:22:46Z Unless I've been lied to all my life, 9 men can't make a baby anytime http://stackoverflow.com/questions/1097378/would-alien-software-be-compatible-with-earth-based-software Comment by Joe Schmoe on Would alien software be compatible with earth-based software ? Joe Schmoe 2009-07-08T11:20:21Z 2009-07-08T11:20:21Z Not sure why this question was closed. Sure, it's a speculative question but it is software-related and would probably be educational to read the answers in that regard. http://stackoverflow.com/questions/1087385/in-c-vs2008-how-to-replace-stringaaa-to-aaa-tostring/1087408#1087408 Comment by Joe Schmoe on In C# VS2008 how to replace (string)aaa to aaa.ToString() Joe Schmoe 2009-07-06T15:11:29Z 2009-07-06T15:11:29Z Don't know why it was downvoted but so have upvoted it in support :) http://stackoverflow.com/questions/1087385/in-c-vs2008-how-to-replace-stringaaa-to-aaa-tostring Comment by Joe Schmoe on In C# VS2008 how to replace (string)aaa to aaa.ToString() Joe Schmoe 2009-07-06T14:53:25Z 2009-07-06T14:53:25Z Is it just a code formatting issue then, or is there a problem with the (string) casts? http://stackoverflow.com/questions/1087245/visual-studio-2005-code-definition-window-stopped-working Comment by Joe Schmoe on Visual Studio 2005 Code Definition Window Stopped Working Joe Schmoe 2009-07-06T14:43:09Z 2009-07-06T14:43:09Z At the risk of stating the obvious, I presume you've tried restarting Visual Studio or rebooting the machine? http://stackoverflow.com/questions/623815/what-is-the-difference-between-a-session-and-a-cookie/623820#623820 Comment by Joe Schmoe on What is the difference between a Session and a Cookie? Joe Schmoe 2009-07-06T09:21:12Z 2009-07-06T09:21:12Z I think you mean cookieless STATE-management...unless the roadies have give up eating them biscuits :)