<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx</link><description>I had an attendee come up to me today asking if they could talk to someone from VS-Core. 'Core' is the name that we use for the team that is responsible for the VS infrastructure that is shared amongst all languages. An example of this would be the editor.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#141844</link><pubDate>Wed, 26 May 2004 00:11:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:141844</guid><dc:creator>Scott Hodson</dc:creator><description>I use a separate window, the integrated help is too slow and puts too many tabs in my tab bar.&lt;br&gt;&lt;br&gt;I also do a lot of Java development and IDEA IntelliJ is my favorite Java IDE, moreso than VS.NET.  I can press Ctrl-Q on any identifier and get the full JavaDocs to pop-up in a separate, anchored, scrollable window.  If there's no JavaDocs defined, like a user-defined type that hasn't been documented, it'll show the method signature and return type.  No need to have a separate window of JavaDocs open.&lt;br&gt;&lt;br&gt;One thing I'd like to see is if, while on a identifier, I select &amp;quot;Go to Definition&amp;quot; and then, after going there, I want to go back to where I was before, there doesn't seem to be a way to do that.  VB6 can do that, F2 and, I think, Shift-F2 to go back.  I miss that.&lt;br&gt;&lt;br&gt;While I'm ranting here, if I say &lt;br&gt;&lt;br&gt;ArrayList someList = new &lt;br&gt;&lt;br&gt;I would expect &amp;quot;ArrayList&amp;quot; to pop-up in a list, already highlighted, and any other known sub/supertypes of ArrayList to be close to the highlighted &amp;quot;ArrayList&amp;quot; option, instead of having to scroll through the entire list or type the first N keys to find my class.  I'd expect a little more intelligence there.&lt;br&gt;</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#141856</link><pubDate>Wed, 26 May 2004 00:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:141856</guid><dc:creator>anonymous</dc:creator><description>&amp;gt; although that would be a fun project decompiling IL&lt;br&gt;&lt;br&gt;It's already done, download Reflector - &lt;a target="_new" href="http://www.aisto.com/roeder/dotnet/"&gt;http://www.aisto.com/roeder/dotnet/&lt;/a&gt; - and get that Smalltalk feeling back. Take note of not just the decompiled code, but the hyperlinking in the code window and so forth. It's not perfect, but having something like it integrated into the VS editing environment would be incredible.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#141888</link><pubDate>Wed, 26 May 2004 01:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:141888</guid><dc:creator>Cyrus Najmabadi</dc:creator><description>Scott: Rants are good.  Rant more.&lt;br&gt;&lt;br&gt;a) There is a way to go back after go to definition.  It's some keystroke that I can't remember now.  Ping me in a few days when i'm back at the office and I'll look it up.  You can then rebind it to something more useful to you.&lt;br&gt;b) In whidbey we've bound that action to the back-button on the mouse (if you have one of those 5 button mice).&lt;br&gt;&lt;br&gt;Your proposal for the completion is quite interesting and we'll look into that kind of action.  The biggest issue we see is that completion lists have been around for a long time and people have an expectation of how they're supposed to work (especially how they're supposed to sort).  Another similar kind of idea is how we would react to:&lt;br&gt;&lt;br&gt;throw new &lt;br&gt;&lt;br&gt;You'd almost expect us to give you a list filtered down to Exceptions only.  However, that would screw you up if you wanted to type:&lt;br&gt;&lt;br&gt;throw new MyClass().GetSharedException();&lt;br&gt;&lt;br&gt;Rare we know, but people do some pretty funky things (especially in large complicated applications).&lt;br&gt;&lt;br&gt;We're looking into ways to do this better and I'll add a post on this later.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#141956</link><pubDate>Wed, 26 May 2004 03:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:141956</guid><dc:creator>Cyrus Najmabadi</dc:creator><description>Anonymous: Reflector gives you a pretty good hierarchical view of your metadata.  However, it doesn't give you a view that looks like C# code.  We'd like a seamless experience between viewing a definition that comes from your own source and one that comes from metadata.  If we had a system like .net reflector, then it would be like the current model where we take you to object browser.&lt;br&gt;&lt;br&gt;I was referring to taking the IL and producing C# code from it.  It would be a fun exercise, especially taking some of the new language features like anonymous delegates and iterators and producing something similar to the original source.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142090</link><pubDate>Wed, 26 May 2004 08:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142090</guid><dc:creator>Stu Smith</dc:creator><description>A couple of trivial yet annoying points:&lt;br&gt;&lt;br&gt;1) Help doesn't remember its desktop state and position. Hit F1, then maximise the window. Close it and F1 again, and that's fine, but if I restart devenv and F1, the window should open maximised again. Opening in the restored state is way too small.&lt;br&gt;&lt;br&gt;[And a related point -- why does help like SQL Server BOL open filling the screen but not actually maximised?]&lt;br&gt;&lt;br&gt;2) Why does help share its favourites with IE? I'd never want to open my IE favourites in help, and equally I'd never open my devenv help favourites in IE. I'd much prefer them to be two separate lists.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142143</link><pubDate>Wed, 26 May 2004 09:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142143</guid><dc:creator>nfactorial</dc:creator><description>I disable DH (or any embedded help within VS) after a fresh install and never enable it again, it was just too slow. If I need help I start up an external version of the .NET documentation or MSDN help (depending on which language I'm using).&lt;br&gt;&lt;br&gt;n!</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142165</link><pubDate>Wed, 26 May 2004 10:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142165</guid><dc:creator>Saurabh Jain</dc:creator><description>Stu,&lt;br&gt;&lt;br&gt;1) I am going to investigate why doesn't the external help viewer restart in maximized mode. No promises, but we will try to get this fixed in VS 2005.&lt;br&gt;&lt;br&gt;2) We are fixing the issues around Favorite in VS 2005. Help favorite window no longer shares favorites with IE, you can import and export favorites across machines and you can even save favorites search (you click on the stored search, and we will reexecute it for you).&lt;br&gt;&lt;br&gt;As for dynamic help, we have done some work to make it less in the face (like not having it visible at startup in the default window layout, not bringing it up when user hits F1, etc.).</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142239</link><pubDate>Wed, 26 May 2004 12:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142239</guid><dc:creator>Nicholas Paldino [.NET/C# MVP]</dc:creator><description>I hate to say it, but dynamic help blows.  It just brought my machine to a halt, and I disable it on every new install, like another of the posters indicated he/she did.&lt;br&gt;&lt;br&gt;However, some of the features being proposed are interesting, to say the least.  The comment about generating &amp;quot;pseudo-code&amp;quot; was amusing to me, only because someone will eventually make a plugin that will give you decompiled code a-la Reflector if it can't be found in any of the loaded projects.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142253</link><pubDate>Wed, 26 May 2004 13:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142253</guid><dc:creator>D. Brian Ellis</dc:creator><description>I hate dynamic help.  If I had the power I would put it in a corner to think about what it's done wrong and come back when it has changed.  &lt;br&gt;&lt;br&gt;1)It's slow (think, 5 sec. start times and I have 512 mb of memory)&lt;br&gt;2)It continually re-opens when I have not asked for it and above all, it has no useful information for me.  &lt;br&gt;3)If I'm working with some myClass object.  I don't get myClass definition as a link, I don't get info on things I can do with this class (Interfaces, Reflection, etc.)  No, I get the same 10 boring overly general topics (C# Samples, Customizing the development environment).  &lt;br&gt;&lt;br&gt;I think the DH is a GREAT idea, but the current incarnation is bad, bad, bad.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142339</link><pubDate>Wed, 26 May 2004 15:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142339</guid><dc:creator>Jason Hasner</dc:creator><description>At home, DH is slow but still faster than me searching manually. At work, (1 Gig ram, 3 Ghz) it's fast enough. It is one of the features that made me fall in love with VS in the first place. I use VS almost exclusively, so I don't have the exposure to different IDEs that others here can use to provide more constructive feedback. &lt;br&gt;&lt;br&gt;I don't understand what Brian means when he says it opens when he doesn't ask for it... probably because I don't use it the same way. It's a tab docked to the right side of VS and I expand it when I need it. It doesn't seem to populate until I expand it. So it only uses resources when it's needed and then it only takes 1/2 a second to populate. After the first time, it's even faster.&lt;br&gt;&lt;br&gt;I would agree with the feedback about &amp;quot;the same 10 boring topics&amp;quot; and the lack of info on user defined classes, but I also understand why those decisions were made.&lt;br&gt;&lt;br&gt;All in all, very well done. Keep up the great work.&lt;br&gt;&lt;br&gt;You guys should go have a talk with the source safe team. That app pisses me off on a daily basis.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142369</link><pubDate>Wed, 26 May 2004 16:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142369</guid><dc:creator>Avner Kashtan</dc:creator><description>I, too, always work with a seperate help window. The DH's lag is only a fraction of a second, but it really annoys me when I walk the code. The code-definition window you mentioned sounds like a GREAT idea.&lt;br&gt;&lt;br&gt;Btw, The key-combination to go back to the last place you were in the code (not only after an F12, but regardless) is Ctrl-- (That's Control-Minus). Took me a while to find out about it, but it's a lifesaver.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142370</link><pubDate>Wed, 26 May 2004 16:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142370</guid><dc:creator>Cyrus Najmabadi</dc:creator><description>Nicholas: Don't 'hate' saying anything.  We don't write features saying &amp;quot;i really hope people won't like this&amp;quot;.  We want you to be saying &amp;quot;i can't live without 'blah'&amp;quot;.  By telling us if something isn't good enough, we can fix it, or replace it with something better.  All we ask is that you help us understand what does/doesn't work with your development process.</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142374</link><pubDate>Wed, 26 May 2004 16:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142374</guid><dc:creator>Cyrus Najmabadi</dc:creator><description>Avner: Thanks for the ctrl-- tip (looks like a alternatice to C++ doesn't it).&lt;br&gt;&lt;br&gt;If you get a chance, try out the VS beta and let us know if you like it or not.&lt;br&gt;&lt;br&gt;Could you explain why you are annoyed when you walk the code?</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#142940</link><pubDate>Thu, 27 May 2004 09:10:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:142940</guid><dc:creator>Saurabh Jain</dc:creator><description>Jason,&lt;br&gt;&lt;br&gt;       Brian is talking about the case when DH pops up when you hit F1. The reason it happens (in VS 2002, 2003) is because we used DH for disambiguation, i.e. to show various alternatives available. This is however not discoverable and it just annoys people. We have fixed in VS 2005 by not using DH but instead showing the alternatives as a drop down off the browser window. For VS 2002, 2003, you can use the VSTweak (&lt;a target="_new" href="http://www.gotdotnet.com/team/ide/helpfiles/vstweak.aspx"&gt;http://www.gotdotnet.com/team/ide/helpfiles/vstweak.aspx&lt;/a&gt;, a VS powertoy) to disable this F1 popup issue. Scott has talked about these changes at &lt;a target="_new" href="http://blogs.msdn.com/scottsw/archive/2004/03/30/104314.aspx#111440"&gt;http://blogs.msdn.com/scottsw/archive/2004/03/30/104314.aspx#111440&lt;/a&gt;.&lt;br&gt;&lt;br&gt;Also, if you look at Tools-&amp;gt;Options-&amp;gt;Environment-&amp;gt;Dynamic help, you can uncheck all categories except Help (and may be Action and Misc.). This should reduce the amount of static links in your window.&lt;br&gt;&lt;br&gt;Nicholas, I have never heard about DH halting up the machine. I do know that it does add 2.5 sec to the cold startup of VS on a 500 MHz, 128 MB, Win2K machine (I do have hard data to back my numbers).&lt;br&gt;&lt;br&gt;Yes, we do realize that DH doesn't meet people's expectations in many areas and hence we have done work to make it less in the face and reduce the annoyance and hatred around it. We are always open for more suggestion on how to fix it. But be warned, as we are in late stages of VS 2005 and we have more higher priority stuff on our plates and hence these changes most likely wont make into 2005 (unless it is cheap to do and improves the experience).&lt;br&gt;</description></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#143107</link><pubDate>Thu, 27 May 2004 15:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:143107</guid><dc:creator>Cyrus Najmabadi</dc:creator><description>Saurabh: I've also hit the issue where having DH up can dramatically affect start up time.  On the order of far more than 2.5 seconds.  I dont' know if it's related to disk or network activity but I do know it's somewhat aggravating as you sort of sit their wanting to use the IDE but unable to do so because everything is locked.</description></item><item><title>What's different between C# Express Beta and the C# you'd get in VS? (Plus: Show me the source!!)</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#169112</link><pubDate>Tue, 29 Jun 2004 23:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:169112</guid><dc:creator>Cyrus' Blather</dc:creator><description /></item><item><title>API writability and the editor</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#174169</link><pubDate>Tue, 06 Jul 2004 20:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:174169</guid><dc:creator>jaybaz [MS] WebLog</dc:creator><description /></item><item><title>re: Dynamic help</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#174210</link><pubDate>Tue, 06 Jul 2004 18:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:174210</guid><dc:creator>Taylor Wood</dc:creator><description>Check out &amp;quot;Anakrino&amp;quot; for .NET. It generates compilable C# from a .NET assembly.&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;ie=UTF-8&amp;amp;q=anakrino&amp;amp;btnG=Search"&gt;http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;ie=UTF-8&amp;amp;q=anakrino&amp;amp;btnG=Search&lt;/a&gt;</description></item><item><title> Cyrus Blather Dynamic help | Quick Diets</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#9722609</link><pubDate>Wed, 10 Jun 2009 06:14:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9722609</guid><dc:creator> Cyrus Blather Dynamic help | Quick Diets</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://quickdietsite.info/story.php?id=4452"&gt;http://quickdietsite.info/story.php?id=4452&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Cyrus Blather Dynamic help | alternative dating</title><link>http://blogs.msdn.com/cyrusn/archive/2004/05/25/141809.aspx#9768500</link><pubDate>Wed, 17 Jun 2009 10:58:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9768500</guid><dc:creator> Cyrus Blather Dynamic help | alternative dating</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://topalternativedating.info/story.php?id=8028"&gt;http://topalternativedating.info/story.php?id=8028&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>