<?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>Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx</link><description>A couple of months ago, I bl ogged about our plans to invest in native libraries . Today, we are taking the next step forward in that journey. 
 
 I am pleased to announce the beta version of the Visua l C++ 2008 Feature Pack is now available for download</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#8606129</link><pubDate>Mon, 16 Jun 2008 20:19:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8606129</guid><dc:creator>Greg</dc:creator><description>&lt;p&gt;Hello, I found a case sensitivity bug in this version of the feature pack and I have simplified it down to very simple and small reproducible code and regex's:&lt;/p&gt;
&lt;p&gt;std::tr1::wregex rx(L&amp;quot;^[a-z]$&amp;quot;, (std::tr1::regex::flag_type)(std::tr1::regex_constants::ECMAScript | std::tr1::regex_constants::icase));&lt;/p&gt;
&lt;p&gt;ASSERT(std::tr1::regex_match((LPCWSTR)&amp;quot;A&amp;quot;, rx));&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8606129" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#8375492</link><pubDate>Thu, 10 Apr 2008 19:49:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8375492</guid><dc:creator>vcblog</dc:creator><description>&lt;p&gt;# re: Visual C++ 2008 Feature Pack Beta Thursday, April 03, 2008 9:37 PM by jwang &lt;/p&gt;
&lt;p&gt;&amp;gt; Is there a release date set for MFC Feature Pack? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is now released, see here for details: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/vcblog/archive/2008/04/07/visual-c-2008-feature-pack-released.aspx"&gt;http://blogs.msdn.com/vcblog/archive/2008/04/07/visual-c-2008-feature-pack-released.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Damien&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8375492" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#8355462</link><pubDate>Fri, 04 Apr 2008 04:37:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8355462</guid><dc:creator>jwang</dc:creator><description>&lt;p&gt;Is there a release date set for MFC Feature Pack? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;MFC Feature Pack provides the tools we need to modernize our MFC-based application. &amp;nbsp;It is extremely crucial for us to ship it with the new capability powered by VC++ Feature Pack. &amp;nbsp;I will be very appreciative if someone could provide some insight on the release schedule.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8355462" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7445478</link><pubDate>Mon, 04 Feb 2008 22:55:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7445478</guid><dc:creator>Stephan T. Lavavej [MSFT]</dc:creator><description>&lt;p&gt;[Jim Lamb]&lt;/p&gt;
&lt;p&gt;&amp;gt; It's great to see MSVC incorporating TR1 though, to be fair,&lt;/p&gt;
&lt;p&gt;&amp;gt; most serious C++ developers have been using the boost libraries&lt;/p&gt;
&lt;p&gt;&amp;gt; to get these features for a very long time.&lt;/p&gt;
&lt;p&gt;There's nothing stopping you from continuing to use Boost, and indeed Boost contains many things that aren't in TR1. Of course, VC9 TR1 has some advantages:&lt;/p&gt;
&lt;p&gt;1. Lower build-related activation energy; after you've installed the Feature Pack (or SP1, etc.), you can immediately use TR1. With Boost, you have to build it (at least if you want to use its separately compiled libraries like Boost.Regex) and then get it picked up by your build system.&lt;/p&gt;
&lt;p&gt;2. Lower lawyer-related activation energy; many companies worry about using open-source software. It doesn't even matter if such worries are justified or not, if you're a programmer who has to deal with your company's legal department.&lt;/p&gt;
&lt;p&gt;3. Debugger integration; the Visual Studio IDE (devenv) will visualize basically all TR1 types, with fancy previews like &amp;quot;shared_ptr {x=5,y=12} [3 strong refs, 1 weak ref]&amp;quot;. Manually decoding the representations of Boost/TR1 types is not fun. There's actually nothing stopping Boost from writing their own visualizers, but at the very least you'd have to hack your autoexp.dat.&lt;/p&gt;
&lt;p&gt;4. Higher performance (theoretically); STL containers will avoid copying TR1 types whenever possible, instead preferring to swap them. Again, there's nothing actually stopping Boost from implementing this optimization, although it relies on nonportable knowledge of VC's STL internals.&lt;/p&gt;
&lt;p&gt;&amp;gt; What's the plan for incorporating TR2?&lt;/p&gt;
&lt;p&gt;TR2 isn't even finished yet. (Currently, the only library proposed for TR2 is the wonderful Boost.Filesystem library.) When it's finished, I'll be the first person bouncing up and down, proposing that we implement it.&lt;/p&gt;
&lt;p&gt;&amp;gt; Are there any plans to develop a new UI framework that follow the&lt;/p&gt;
&lt;p&gt;&amp;gt; TR1 naming conventions and makes better use of generic programming?&lt;/p&gt;
&lt;p&gt;I'd like to do that someday. Note that it's a hard problem; there is still no Boost.UI.&lt;/p&gt;
&lt;p&gt;Stephan T. Lavavej&lt;/p&gt;
&lt;p&gt;Visual C++ Libraries Developer&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7445478" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7443928</link><pubDate>Mon, 04 Feb 2008 21:36:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7443928</guid><dc:creator>Pat Brenner</dc:creator><description>&lt;p&gt;Hi Jonas,&lt;/p&gt;
&lt;p&gt;If you've found bugs in the MFC wizards using the Feature Pack Beta, could you please log them using Connect?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Pat Brenner&lt;/p&gt;
&lt;p&gt;Visual C++ Libraries Development&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7443928" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7287680</link><pubDate>Mon, 28 Jan 2008 17:41:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7287680</guid><dc:creator>Jonas</dc:creator><description>&lt;p&gt;I'm having some trouble using the new project wizards. For example, a file named toolbar_256.bmp (IIRC) is not included here. I think I saw some other bug too, in that an empty Window menu was attempted to be created in the .rc file, but that's not allowed by Visual Studio.&lt;/p&gt;
&lt;p&gt;Anyway, those things are sort of expected in betas. Otherwise, fixing up those post-wizard errors manually, things have been working pretty well!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7287680" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7255690</link><pubDate>Sat, 26 Jan 2008 17:08:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7255690</guid><dc:creator>Jim Lamb</dc:creator><description>&lt;p&gt;It's great to see MSVC incorporating TR1 though, to be fair, most serious C++ developers have been using the boost libraries to get these features for a very long time. What's the plan for incorporating TR2? &lt;/p&gt;
&lt;p&gt;Are there any plans to develop a new UI framework that follow the TR1 naming conventions and makes better use of generic programming? It's nice to see to see controls like the ribbon, but MFC was getting long in the tooth 5 years ago. Isn't it time for a new, streamlined UI framework with a richer design-time experience?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7255690" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7188048</link><pubDate>Mon, 21 Jan 2008 23:29:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7188048</guid><dc:creator>Mark Gordon</dc:creator><description>&lt;p&gt;Any idea when we are going to have Visual UI control inheritance in Visual Studio 2008? I believe that is a feature of FoxPro ...&lt;/p&gt;
&lt;p&gt;Mark&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://dotbloat.blogspot.com/"&gt;http://dotbloat.blogspot.com/&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7188048" width="1" height="1"&gt;</description></item><item><title>Support du TR1 dans Visual Studio 2008</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7176182</link><pubDate>Mon, 21 Jan 2008 00:37:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7176182</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;Soma annonce sur son blog le support du TR1 dans Visual Studio 2008 . Vous pouvez t&amp;#233;l&amp;#233;charger la b&amp;#233;ta&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7176182" width="1" height="1"&gt;</description></item><item><title>re: Visual C++ 2008 Feature Pack Beta</title><link>http://blogs.msdn.com/b/somasegar/archive/2008/01/08/visual-c-2008-feature-pack-beta.aspx#7143364</link><pubDate>Thu, 17 Jan 2008 23:10:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7143364</guid><dc:creator>Ayman Shoukry</dc:creator><description>&lt;p&gt;Hello James,&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Folks on the C++ team are currently looking into the installation issues. We discovered the reason for such issues and are investigating the appropriate actions.&lt;/p&gt;
&lt;p&gt;Thanks in advance for your patience. We will make sure to communicate the result of the investigation.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ayman Shoukry&lt;/p&gt;
&lt;p&gt;Visual C++ Team&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7143364" width="1" height="1"&gt;</description></item></channel></rss>