<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for cro</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/cro/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for cro</title><link>http://channel9.msdn.com/Niners/cro/</link></image><description>Entries, comments and threads posted by cro</description><link>http://channel9.msdn.com/Niners/cro/</link><language>en-us</language><pubDate>Fri, 20 Nov 2009 20:54:22 GMT</pubDate><lastBuildDate>Fri, 20 Nov 2009 20:54:22 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Jumping in the .net bandwagon</title><description>&lt;p&gt;I know that I'm very late, but we are jumping in the .net bandwagon. I have done some little app in C# but I would like tutorials for professional app (localization, save the toolbars and windows state, etc.). I've search the msdn site, but it is hard to find&amp;nbsp;informations (maybe it is just me). So any book recommandation, sites, webcast, or old pcd videos would be great. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I'm moving from C++/MFC/Stingray/MapX/Vertical Mapper to C#/MSChart/MapXtreme/Vertical Mapper.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;img src="http://channel9.msdn.com/507825/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/507825-Jumping-in-the-net-bandwagon/</comments><link>http://channel9.msdn.com/forums/TechOff/507825-Jumping-in-the-net-bandwagon/</link><pubDate>Fri, 20 Nov 2009 20:54:22 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/507825-Jumping-in-the-net-bandwagon/</guid><evnet:views>150</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/507825/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I know that I'm very late, but we are jumping in the .net bandwagon. I have done some little app in C# but I would like tutorials for professional app (localization, save the toolbars and windows state, etc.). I've search the msdn site, but it is hard to find&amp;nbsp;informations (maybe it is just me).&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/507825-Jumping-in-the-net-bandwagon/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/507825/Trackback.aspx</trackback:ping></item><item><title>x86 vs x64 performance ? [x86 vs x64 performance ?]</title><description>&lt;p&gt;I'm running some test in C++ to be sure that our program run in x86 and x64. I was really surprise to notice a speed improvement in x64. I'm running the test on a Win7 x64 machine. Is the x64 is faster because it is running on a 64 OS ? Or is it something in the code that is better in x64 ? I'm using VS 2008.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;[code language="cpp"]&lt;br /&gt;#include &amp;lt;iostream&amp;gt; &lt;br /&gt;#include &amp;lt;ctime&amp;gt; &lt;br /&gt;&lt;br /&gt;using namespace std; &lt;br /&gt;&lt;br /&gt;#define ROWS 2000 &lt;br /&gt;#define COLS 2000 &lt;br /&gt;#define LOOP 100 &lt;br /&gt;&lt;br /&gt;int main() &lt;br /&gt;{ &lt;br /&gt;&amp;nbsp;&amp;nbsp; float* m = new float[ROWS * COLS]; &lt;br /&gt;&amp;nbsp;&amp;nbsp; time_t begin, end;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp; time(&amp;amp;begin); &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; for (int n = 0; n &amp;lt; LOOP; ++n) &lt;br /&gt;&amp;nbsp;&amp;nbsp; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (size_t row = 0; row &amp;lt; ROWS; ++row) &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (size_t col = 0; col &amp;lt; COLS; ++col) &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m[row * COLS + col] = 1.0f * (rand() % 1000); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;br /&gt;&amp;nbsp;&amp;nbsp; } &lt;br /&gt;&amp;nbsp;&amp;nbsp; time(&amp;amp;end); double elapse = difftime(end, begin); &lt;br /&gt;&amp;nbsp;&amp;nbsp; cout &amp;lt;&amp;lt; "Done in " &amp;lt;&amp;lt; elapse &amp;lt;&amp;lt; " seconds" &amp;lt;&amp;lt; endl; &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; delete[] m; &lt;br /&gt;} [/code]&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That simple test took 12 seconds in x86 and only 8 seconds in x64. Repro or explanation anyone ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/504132-x86-vs-x64-performance-/'&gt;x86 vs x64 performance ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/504132/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/504132-x86-vs-x64-performance-/</comments><link>http://channel9.msdn.com/forums/TechOff/504132-x86-vs-x64-performance-/</link><pubDate>Tue, 03 Nov 2009 18:36:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/504132-x86-vs-x64-performance-/</guid><evnet:views>302</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/504132/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm running some test in C++ to be sure that our program run in x86 and x64. I was really surprise to notice a speed improvement in x64. I'm running the test on a Win7 x64 machine. Is the x64 is faster because it is running on a 64 OS ? Or is it something in the code that is better in x64 ? I'm&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/504132-x86-vs-x64-performance-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/504132/Trackback.aspx</trackback:ping></item><item><title>Design by Contract in C#  [Design by Contract in C# ]</title><description>&lt;p&gt;Is there a basic DbC framework that I could use in&amp;nbsp;VS2008 and Mono ? &lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/494357-Design-by-Contract-in-C/'&gt;Design by Contract in C# &lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/494357/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/494357-Design-by-Contract-in-C/</comments><link>http://channel9.msdn.com/forums/TechOff/494357-Design-by-Contract-in-C/</link><pubDate>Fri, 25 Sep 2009 18:04:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/494357-Design-by-Contract-in-C/</guid><evnet:views>585</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/494357/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Is there a basic DbC framework that I could use in&amp;nbsp;VS2008 and Mono ? in reply to Design by Contract in C# </evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>13</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/494357-Design-by-Contract-in-C/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/494357/Trackback.aspx</trackback:ping></item><item><title>IESHIMS.DLL &amp; WER.DLL missing [IESHIMS.DLL &amp; WER.DLL missing]</title><description>&lt;p&gt;After deploying my application (MFC/VS 2008 SP1) on Windows XP, I get the complaint that the application configuration was incorrect and I should reinstall. vcredist is install. So I run depends and IESHIMS.DLL and WER.DLL are missing. How can I install thoses dll ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;EDIT: ok after some investigation, it is a Side by Side error. I have create a sample test application and depends also tell me that ieshims.dll and wer.dll are missing, but the application run. How can I resolve a side by side error ? &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/488932-IESHIMSDLL--WERDLL-missing/'&gt;IESHIMS.DLL &amp; WER.DLL missing&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/488932/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/488932-IESHIMSDLL--WERDLL-missing/</comments><link>http://channel9.msdn.com/forums/TechOff/488932-IESHIMSDLL--WERDLL-missing/</link><pubDate>Tue, 01 Sep 2009 13:02:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/488932-IESHIMSDLL--WERDLL-missing/</guid><evnet:views>3783</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/488932/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>After deploying my application (MFC/VS 2008 SP1) on Windows XP, I get the complaint that the application configuration was incorrect and I should reinstall. vcredist is install. So I run depends and IESHIMS.DLL and WER.DLL are missing. How can I install thoses dll ?
&amp;nbsp;
EDIT: ok after some&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/488932-IESHIMSDLL--WERDLL-missing/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/488932/Trackback.aspx</trackback:ping></item><item><title>Media Center wtv file thumbnail ? [Media Center wtv file thumbnail ?]</title><description>&lt;p&gt;Media Center in Windows 7 use the wtv file format for recorded tv show. There is one thing that I really dislike, to create the thumbnail for those files, we must go to recorded tv under Media Center. With Vista, explorer was able to create the thumbnail. Repro anyone ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/488129-Media-Center-wtf-file-thumbnail-/'&gt;Media Center wtv file thumbnail ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/488129/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/488129-Media-Center-wtf-file-thumbnail-/</comments><link>http://channel9.msdn.com/forums/TechOff/488129-Media-Center-wtf-file-thumbnail-/</link><pubDate>Sat, 29 Aug 2009 01:41:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/488129-Media-Center-wtf-file-thumbnail-/</guid><evnet:views>466</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/488129/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Media Center in Windows 7 use the wtv file format for recorded tv show. There is one thing that I really dislike, to create the thumbnail for those files, we must go to recorded tv under Media Center. With Vista, explorer was able to create the thumbnail. Repro anyone ?
&amp;nbsp;in reply to Media Center wtv file thumbnail ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>3</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/488129-Media-Center-wtf-file-thumbnail-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/488129/Trackback.aspx</trackback:ping></item><item><title>Media Center user account [Media Center user account]</title><description>&lt;p&gt;I've create an account for each family member on our media center, but I would like to create a "media center" account. The goal of that account would be to lauch media center and nothing else and log off when you quit media center. I have found in the media player options a way to start it when windows start for an account, but it's not what I want.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is it possible ?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/485942-Media-Center-user-account/'&gt;Media Center user account&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/485942/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/485942-Media-Center-user-account/</comments><link>http://channel9.msdn.com/forums/TechOff/485942-Media-Center-user-account/</link><pubDate>Thu, 20 Aug 2009 16:30:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/485942-Media-Center-user-account/</guid><evnet:views>467</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/485942/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've create an account for each family member on our media center, but I would like to create a "media center" account. The goal of that account would be to lauch media center and nothing else and log off when you quit media center. I have found in the media player options a way to start it when&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>6</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/485942-Media-Center-user-account/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/485942/Trackback.aspx</trackback:ping></item><item><title>Media Player and Zune database ? [Media Player and Zune database ?]</title><description>&lt;p&gt;I've bough the Billy Talent III album and I'm surprised that Media Player and Zune can't find the album art. How does it work ? Is&amp;nbsp;the information&amp;nbsp;provide by end users like CDDB ?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/480508-Media-Player-and-Zune-database-/'&gt;Media Player and Zune database ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/480508/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/480508-Media-Player-and-Zune-database-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/480508-Media-Player-and-Zune-database-/</link><pubDate>Thu, 23 Jul 2009 21:59:38 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/480508-Media-Player-and-Zune-database-/</guid><evnet:views>752</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/480508/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've bough the Billy Talent III album and I'm surprised that Media Player and Zune can't find the album art. How does it work ? Is&amp;nbsp;the information&amp;nbsp;provide by end users like CDDB ?
&amp;nbsp;in reply to Media Player and Zune database ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>10</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/480508-Media-Player-and-Zune-database-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/480508/Trackback.aspx</trackback:ping></item><item><title>MapXtreme 2008 [MapXtreme 2008]</title><description>&lt;p&gt;Any MapXtreme user here ? We&amp;nbsp;are using MapX 4.5 and Vertical Mapper 3 in our app and we are looking for a newer SDK. What I would like to know is the raster capability of MapXtreme. We need to reproject raster data and create new layer of raster data. The documentation link is broken on the site.&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/478539-MapXtreme-2008/'&gt;MapXtreme 2008&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/478539/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/478539-MapXtreme-2008/</comments><link>http://channel9.msdn.com/forums/TechOff/478539-MapXtreme-2008/</link><pubDate>Mon, 13 Jul 2009 17:43:30 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/478539-MapXtreme-2008/</guid><evnet:views>399</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/478539/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Any MapXtreme user here ? We&amp;nbsp;are using MapX 4.5 and Vertical Mapper 3 in our app and we are looking for a newer SDK. What I would like to know is the raster capability of MapXtreme. We need to reproject raster data and create new layer of raster data. The documentation link is broken on the site.in reply to MapXtreme 2008</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/478539-MapXtreme-2008/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/478539/Trackback.aspx</trackback:ping></item><item><title>University and Microsoft [University and Microsoft]</title><description>&lt;p&gt;For my personel knowledge I'm following some corse at university.&amp;nbsp;I was surprise that all teachers (for now) use Visual Studio and not Eclipse. One teacher even use managed C++.&amp;nbsp;To me the best place to find OSS advocate was the university. But, most students are like Corona and Ubuntu, its Linux and noting else. and Microsoft is written with a $. I've&amp;nbsp;brought my VS backpack to an exam one day, and I though that some student gonna puke on me (I exaggerate, but not much :D).&lt;/p&gt;
&lt;p&gt;The university is even moving to Exchange 2007.&lt;/p&gt;
&lt;p&gt;How it happens in your university?&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/477552-University-and-Microsoft/'&gt;University and Microsoft&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/477552/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/477552-University-and-Microsoft/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/477552-University-and-Microsoft/</link><pubDate>Thu, 09 Jul 2009 00:13:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/477552-University-and-Microsoft/</guid><evnet:views>718</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477552/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>For my personel knowledge I'm following some corse at university.&amp;nbsp;I was surprise that all teachers (for now) use Visual Studio and not Eclipse. One teacher even use managed C++.&amp;nbsp;To me the best place to find OSS advocate was the university. But, most students are like Corona and Ubuntu, its&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>18</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/477552-University-and-Microsoft/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/477552/Trackback.aspx</trackback:ping></item><item><title>How to retreive what is send to a web server ? [How to retreive what is send to a web server ?]</title><description>&lt;p&gt;I'm using a web site to get climate data from weather station. The site can provide all station within x kilometer from a lat lon point. I would like to get that list programaticly but I don't know what is send to the web site. How can find that ?&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.climate.weatheroffice.ec.gc.ca/advanceSearch/searchHistoricData_e.html?timeframe=1&amp;amp;Prov=XX&amp;amp;StationID=9999&amp;amp;Year=2009&amp;amp;Month=5&amp;amp;Day=26"&gt;http://www.climate.weatheroffice.ec.gc.ca/advanceSearch/searchHistoricData_e.html?timeframe=1&amp;amp;Prov=XX&amp;amp;StationID=9999&amp;amp;Year=2009&amp;amp;Month=5&amp;amp;Day=26&lt;/a&gt;&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/470719-How-to-retreive-what-is-send-to-a-web-server-/'&gt;How to retreive what is send to a web server ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/470719/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/470719-How-to-retreive-what-is-send-to-a-web-server-/</comments><link>http://channel9.msdn.com/forums/TechOff/470719-How-to-retreive-what-is-send-to-a-web-server-/</link><pubDate>Wed, 27 May 2009 13:42:03 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/470719-How-to-retreive-what-is-send-to-a-web-server-/</guid><evnet:views>278</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/470719/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I'm using a web site to get climate data from weather station. The site can provide all station within x kilometer from a lat lon point. I would like to get that list programaticly but I don't know what is send to the web site. How can find that&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/470719-How-to-retreive-what-is-send-to-a-web-server-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/470719/Trackback.aspx</trackback:ping></item><item><title>Windows 7 SDK and VS2008 intregration [Windows 7 SDK and VS2008 intregration]</title><description>I have VS2008 pro sp1 under Windows 7 RC and I have install the Windows 7 SDK. When running the intregration tool for VS, I've receive a message that said that vs2005 or vs2008 is not install. Any idea ?&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/468683-Windows-7-SDK-and-VS2008-intregration/'&gt;Windows 7 SDK and VS2008 intregration&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/468683/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/468683-Windows-7-SDK-and-VS2008-intregration/</comments><link>http://channel9.msdn.com/forums/TechOff/468683-Windows-7-SDK-and-VS2008-intregration/</link><pubDate>Sun, 10 May 2009 23:02:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/468683-Windows-7-SDK-and-VS2008-intregration/</guid><evnet:views>431</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/468683/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have VS2008 pro sp1 under Windows 7 RC and I have install the Windows 7 SDK. When running the intregration tool for VS, I've receive a message that said that vs2005 or vs2008 is not install. Any idea ?in reply to Windows 7 SDK and VS2008 intregration</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/468683-Windows-7-SDK-and-VS2008-intregration/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/468683/Trackback.aspx</trackback:ping></item><item><title>French menu bug [French menu bug]</title><description>&lt;P&gt;The "about" menu is misplace in french when we are not log in.&lt;BR&gt;&lt;BR&gt;&lt;A href="http://z5rynq.bay.livefilestore.com/y1pqOb6RjStS_2sahAU9nGJ3lznEV46xUE-0RK8K9tUyOL_wpalEAt6kjc8N90mhtQpNTbGBoBATMtWmkBDKq_bgSLpA7EJJxOZ/channel9-bug.JPG" rel=lightbox&gt;&lt;IMG src="http://z5rynq.bay.livefilestore.com/y1pqOb6RjStS_2sahAU9nGJ3lznEV46xUE-0RK8K9tUyOL_wpalEAt6kjc8N90mhtQpNTbGBoBATMtWmkBDKq_bgSLpA7EJJxOZ/channel9-bug.JPG"&gt;&lt;/A&gt;&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Feedback/466986-French-menu-bug/'&gt;French menu bug&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/466986/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Feedback/466986-French-menu-bug/</comments><link>http://channel9.msdn.com/forums/Feedback/466986-French-menu-bug/</link><pubDate>Mon, 27 Apr 2009 22:26:19 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Feedback/466986-French-menu-bug/</guid><evnet:views>196</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/466986/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>The "about" menu is misplace in french when we are not log in.in reply to French menu bug</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Feedback/466986-French-menu-bug/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/466986/Trackback.aspx</trackback:ping></item><item><title>IE7 and Firebox small bug on my website [IE7 and Firebox small bug on my website]</title><description>I've create a small site for an nhl hockey pool with some friends and I have a small bug on IE7 and Firefox. On IE8 everything is ok. If you go to the site with IE7 or&amp;nbsp; Firefox, notice that the nhl logo is not fully click able, but it is on IE8. Any idea on what cause the problem ? &lt;br&gt;&lt;br&gt;&lt;a href="http://nsl.hobby-site.org:81/"&gt;http://nsl.hobby-site.org:81/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/466751-IE7-and-Firebox-small-bug-on-my-website/'&gt;IE7 and Firebox small bug on my website&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/466751/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/466751-IE7-and-Firebox-small-bug-on-my-website/</comments><link>http://channel9.msdn.com/forums/TechOff/466751-IE7-and-Firebox-small-bug-on-my-website/</link><pubDate>Sat, 25 Apr 2009 14:06:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/466751-IE7-and-Firebox-small-bug-on-my-website/</guid><evnet:views>565</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/466751/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've create a small site for an nhl hockey pool with some friends and I have a small bug on IE7 and Firefox. On IE8 everything is ok. If you go to the site with IE7 or&amp;nbsp; Firefox, notice that the nhl logo is not fully click able, but it is on IE8. Any idea on what cause the problem ?&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/466751-IE7-and-Firebox-small-bug-on-my-website/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/466751/Trackback.aspx</trackback:ping></item><item><title>Refactor C/C++ code with VS2010 ? [Refactor C/C++ code with VS2010 ?]</title><description>&lt;P&gt;Do you think that it will be possible to refactor C/C++ code with VS2010 ? SunStudio12 can, so I expect no less from VS. &lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/466268-Refactor-CC-code-with-VS2010-/'&gt;Refactor C/C++ code with VS2010 ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/466268/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/466268-Refactor-CC-code-with-VS2010-/</comments><link>http://channel9.msdn.com/forums/TechOff/466268-Refactor-CC-code-with-VS2010-/</link><pubDate>Tue, 21 Apr 2009 13:24:41 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/466268-Refactor-CC-code-with-VS2010-/</guid><evnet:views>875</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/466268/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Do you think that it will be possible to refactor C/C++ code with VS2010 ? SunStudio12 can, so I expect no less from VS. in reply to Refactor C/C++ code with VS2010 ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/466268-Refactor-CC-code-with-VS2010-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/466268/Trackback.aspx</trackback:ping></item><item><title>How-to retreive a div innerHTML from a CHtmlView (C++/MFC) ? [How-to retreive a div innerHTML from a CHtmlView (C++/MFC) ?]</title><description>I use Virtual Earth in a CHtmlView. With the ve onmousemouve event I can get the lat long value in an hidden div on the page. I would like to retreive that value and display it on the status bar of the application. Any idea on how to do that ? &lt;BR&gt;&lt;BR&gt;Thanks.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/463175-How-to-retreive-a-div-innerHTML-from-a-CHtmlView-CMFC-/'&gt;How-to retreive a div innerHTML from a CHtmlView (C++/MFC) ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/463175/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/463175-How-to-retreive-a-div-innerHTML-from-a-CHtmlView-CMFC-/</comments><link>http://channel9.msdn.com/forums/TechOff/463175-How-to-retreive-a-div-innerHTML-from-a-CHtmlView-CMFC-/</link><pubDate>Tue, 31 Mar 2009 13:11:38 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/463175-How-to-retreive-a-div-innerHTML-from-a-CHtmlView-CMFC-/</guid><evnet:views>655</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/463175/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I use Virtual Earth in a CHtmlView. With the ve onmousemouve event I can get the lat long value in an hidden div on the page. I would like to retreive that value and display it on the status bar of the application. Any idea on how to do that ? Thanks.in reply to How-to retreive a div innerHTML from a CHtmlView (C++/MFC) ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>5</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/463175-How-to-retreive-a-div-innerHTML-from-a-CHtmlView-CMFC-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/463175/Trackback.aspx</trackback:ping></item><item><title>MFC MUI application with VS2008 [MFC MUI application with VS2008]</title><description>Do you know where I can find very good documentation for creating an MUI MFC application with VS2008 ? The test app that I made work for the string table and the dialog, but not for the menu. &lt;BR&gt;&lt;BR&gt;Thanks.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/459835-MFC-MUI-application-with-VS2008/'&gt;MFC MUI application with VS2008&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/459835/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/459835-MFC-MUI-application-with-VS2008/</comments><link>http://channel9.msdn.com/forums/TechOff/459835-MFC-MUI-application-with-VS2008/</link><pubDate>Thu, 05 Mar 2009 13:30:49 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/459835-MFC-MUI-application-with-VS2008/</guid><evnet:views>588</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459835/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Do you know where I can find very good documentation for creating an MUI MFC application with VS2008 ? The test app that I made work for the string table and the dialog, but not for the menu. Thanks.in reply to MFC MUI application with VS2008</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/459835-MFC-MUI-application-with-VS2008/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/459835/Trackback.aspx</trackback:ping></item><item><title>Help needed with a layout (html+css) [Help needed with a layout (html+css)]</title><description>&lt;P&gt;I have a page layout that use div and when I add a paragraph &amp;lt;p&amp;gt;&amp;nbsp;in the div, the layout is all mess up. For exemple with this code, the table is what I want as the final result.&amp;nbsp;&lt;BR&gt;&lt;BR&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;BR&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;BR&gt;&amp;lt;head&amp;gt;&lt;BR&gt;&amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;BR&gt;&amp;lt;style type="text/css"&amp;gt;&lt;BR&gt;.container {&lt;BR&gt;width: 500px; }&lt;BR&gt;.test1 {background-color: Red; }&lt;BR&gt;.test2 {background-color: Blue; }&lt;BR&gt;.test3 {background-color: Green; }&lt;BR&gt;&amp;lt;/style&amp;gt;&lt;BR&gt;&amp;lt;/head&amp;gt;&lt;BR&gt;&amp;lt;body&amp;gt;&lt;BR&gt;&amp;lt;h1&amp;gt;table&amp;lt;/h1&amp;gt;&lt;BR&gt;&amp;lt;table class="container" border="0" cellpadding="0" cellspacing="0"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&amp;lt;td class="test1"&amp;gt;&amp;lt;p&amp;gt;First&amp;lt;/p&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&amp;lt;td class="test2"&amp;gt;&amp;lt;p&amp;gt;Second&amp;lt;/p&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;tr&amp;gt;&amp;lt;td class="test3"&amp;gt;&amp;lt;p&amp;gt;Third&amp;lt;/p&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;lt;/table&amp;gt;&lt;BR&gt;&amp;lt;h1&amp;gt;div&amp;lt;/h1&amp;gt;&lt;BR&gt;&amp;lt;div class="container"&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;div class="test1"&amp;gt;&amp;lt;p&amp;gt;First&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;div class="test2"&amp;gt;&amp;lt;p&amp;gt;Second&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;div class="test3"&amp;gt;&amp;lt;p&amp;gt;Third&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;lt;/body&amp;gt;&lt;BR&gt;&amp;lt;/html&amp;gt;&lt;BR&gt;&lt;BR&gt;Thanks.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/457704-Help-needed-with-a-layout-htmlcss/'&gt;Help needed with a layout (html+css)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/457704/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/457704-Help-needed-with-a-layout-htmlcss/</comments><link>http://channel9.msdn.com/forums/TechOff/457704-Help-needed-with-a-layout-htmlcss/</link><pubDate>Tue, 17 Feb 2009 00:53:08 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/457704-Help-needed-with-a-layout-htmlcss/</guid><evnet:views>632</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/457704/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have a page layout that use div and when I add a paragraph &amp;lt;p&amp;gt;&amp;nbsp;in the div, the layout is all mess up. For exemple with this code, the table is what I want as the final result.&amp;nbsp;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/457704-Help-needed-with-a-layout-htmlcss/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/457704/Trackback.aspx</trackback:ping></item><item><title>Subversion and MFC  [Subversion and MFC ]</title><description>Moving from VSS to Subversion, any advice&amp;nbsp;using subversion source control for MFC application ? My main consern is the ressource (h, rc) if more than one devs can edit them at the same time.&lt;BR&gt;&lt;BR&gt;Also is there a good addin for Visual Studio 2008 that work mostly like VSS ?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/454366-Subversion-and-MFC/'&gt;Subversion and MFC &lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/454366/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/454366-Subversion-and-MFC/</comments><link>http://channel9.msdn.com/forums/TechOff/454366-Subversion-and-MFC/</link><pubDate>Wed, 21 Jan 2009 18:38:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/454366-Subversion-and-MFC/</guid><evnet:views>960</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/454366/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Moving from VSS to Subversion, any advice&amp;nbsp;using subversion source control for MFC application ? My main consern is the ressource (h, rc) if more than one devs can edit them at the same time.Also is there a good addin for Visual Studio 2008 that work mostly like VSS ?in reply to Subversion and MFC </evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/454366-Subversion-and-MFC/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/454366/Trackback.aspx</trackback:ping></item><item><title>Windows 7 first impression [Windows 7 first impression]</title><description>&lt;UL&gt;
&lt;LI&gt;I like the new task bar&lt;/LI&gt;
&lt;LI&gt;I like the fact that when I maximize a windows, the task bar and the windows are still transparent&lt;/LI&gt;
&lt;LI&gt;ISO&amp;nbsp;burning built in yes !&lt;/LI&gt;
&lt;LI&gt;WMP&amp;nbsp;hidden controls when watching a movie&lt;/LI&gt;
&lt;LI&gt;IE8 has some issue with msn.ca, but it seem faster than IE7&lt;/LI&gt;
&lt;LI&gt;"Devices and Printers"&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;For a beta I'm really impress. Just one bug so far, as with Vista in the beta, the screen saver never start.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/452508-Windows-7-first-impression/'&gt;Windows 7 first impression&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/452508/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/452508-Windows-7-first-impression/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/452508-Windows-7-first-impression/</link><pubDate>Sat, 10 Jan 2009 21:42:15 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/452508-Windows-7-first-impression/</guid><evnet:views>1355</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/452508/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I like the new task bar
I like the fact that when I maximize a windows, the task bar and the windows are still transparent
ISO&amp;nbsp;burning built in yes !
WMP&amp;nbsp;hidden controls when watching a movie
IE8 has some issue with msn.ca, but it seem faster than IE7
"Devices and Printers"
For a&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>53</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/452508-Windows-7-first-impression/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/452508/Trackback.aspx</trackback:ping></item><item><title>Portable "native" C++ graphic library ? [Portable "native" C++ graphic library ?]</title><description>I've just try &lt;a href="http://www.fltk.org/"&gt;FLTK&lt;/a&gt; and the look and feel is like Unix of the 90 (look at the &lt;a href="http://www.fltk.org/doc-2.0/html/classClock.html"&gt;clock&lt;/a&gt;). Is there a C++ graphic library that look native on Windows, Linux and OS X ? Do you think that it is possible ?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/452092-Portable-native-C-graphic-library-/'&gt;Portable "native" C++ graphic library ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/452092/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/452092-Portable-native-C-graphic-library-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/452092-Portable-native-C-graphic-library-/</link><pubDate>Fri, 09 Jan 2009 01:47:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/452092-Portable-native-C-graphic-library-/</guid><evnet:views>649</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/452092/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've just try FLTK and the look and feel is like Unix of the 90 (look at the clock). Is there a C++ graphic library that look native on Windows, Linux and OS X ? Do you think that it is possible ?in reply to Portable "native" C++ graphic library ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/452092-Portable-native-C-graphic-library-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/452092/Trackback.aspx</trackback:ping></item><item><title>Retreive a message from a CreateProcess ? [Retreive a message from a CreateProcess ?]</title><description>Is it possible to create a process, an MFC application, and from that MFC application send message back to the programme that create the process ? &lt;BR&gt;&lt;BR&gt;The goal is to be able to run the MFC application with a UI or in a console. So I create a console app (a.com) that launch the MFC application (a.exe) with a swith to run in console mode, but how can the MFC app send message back to a.com so that message get display in the console ?&lt;BR&gt;&lt;BR&gt;Thanks.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/447251-Retreive-a-message-from-a-CreateProcess-/'&gt;Retreive a message from a CreateProcess ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/447251/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/447251-Retreive-a-message-from-a-CreateProcess-/</comments><link>http://channel9.msdn.com/forums/TechOff/447251-Retreive-a-message-from-a-CreateProcess-/</link><pubDate>Fri, 05 Dec 2008 21:02:15 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/447251-Retreive-a-message-from-a-CreateProcess-/</guid><evnet:views>849</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/447251/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Is it possible to create a process, an MFC application, and from that MFC application send message back to the programme that create the process ? The goal is to be able to run the MFC application with a UI or in a console. So I create a console app (a.com) that launch the MFC application (a.exe)&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/447251-Retreive-a-message-from-a-CreateProcess-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/447251/Trackback.aspx</trackback:ping></item><item><title>Enum C# vs C++ [Enum C# vs C++]</title><description>&lt;P&gt;In C# this is perfectly legal :&lt;BR&gt;&lt;BR&gt;enum A&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;None,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Value1,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Value2&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;enum B&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;None,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sometype1,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sometype2&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;C++ complain that None is already define, so is it possible to accomplish the same thing in C++ ? &lt;BR&gt;&lt;BR&gt;Thanks&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/446478-Enum-C-vs-C/'&gt;Enum C# vs C++&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/446478/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/446478-Enum-C-vs-C/</comments><link>http://channel9.msdn.com/forums/TechOff/446478-Enum-C-vs-C/</link><pubDate>Tue, 02 Dec 2008 19:54:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/446478-Enum-C-vs-C/</guid><evnet:views>1239</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/446478/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>In C# this is perfectly legal :enum A{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;None,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Value1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Value2}enum B{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;None,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sometype1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sometype2}C++ complain that None is already define, so is it possible to&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/446478-Enum-C-vs-C/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/446478/Trackback.aspx</trackback:ping></item><item><title>Very long class name ? [Very long class name ?]</title><description>I try to rewrite our C++ app in C# and refactoring the app in doing it. In C++ we have that class&amp;nbsp;hierarchy:&lt;BR&gt;&lt;BR&gt;SubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PotentialEvapotranspiration&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Penman&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HydroQuebec&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Thornthwaite&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;VerticalWaterBudget&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Bv3c&lt;BR&gt;&lt;BR&gt;Following some guideline in C# and came up with this:&lt;BR&gt;&lt;BR&gt;SubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PotentialEvapotranspirationSubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PenmanPotentialEvapotranspirationSubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HydroQuebecPotentialEvapotranspirationSubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ThornthwaitePotentialEvapotranspirationSubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;VerticalWaterBudgetSubModel&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Bv3cVerticalWaterBudgetSubModel&lt;BR&gt;&lt;BR&gt;So, how long is too long ? The kernel of our app is open source, so as a developper, would you like having those class name ?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/443176-Very-long-class-name-/'&gt;Very long class name ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/443176/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/443176-Very-long-class-name-/</comments><link>http://channel9.msdn.com/forums/TechOff/443176-Very-long-class-name-/</link><pubDate>Fri, 14 Nov 2008 15:13:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/443176-Very-long-class-name-/</guid><evnet:views>899</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/443176/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I try to rewrite our C++ app in C# and refactoring the app in doing it. In C++ we have that&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/443176-Very-long-class-name-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/443176/Trackback.aspx</trackback:ping></item><item><title>std::max() std::min() missing in VC8 and VC9 ? [std::max() std::min() missing in VC8 and VC9 ?]</title><description>Is it me or std::max and std::min are missing in VC8 and VC9 ?&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/426345-stdmax-stdmin-missing-in-VC8-and-VC9-/'&gt;std::max() std::min() missing in VC8 and VC9 ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/426345/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/426345-stdmax-stdmin-missing-in-VC8-and-VC9-/</comments><link>http://channel9.msdn.com/forums/TechOff/426345-stdmax-stdmin-missing-in-VC8-and-VC9-/</link><pubDate>Mon, 08 Sep 2008 13:24:18 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/426345-stdmax-stdmin-missing-in-VC8-and-VC9-/</guid><evnet:views>1408</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/426345/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Is it me or std::max and std::min are missing in VC8 and VC9 ?in reply to std::max() std::min() missing in VC8 and VC9 ?</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>12</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/426345-stdmax-stdmin-missing-in-VC8-and-VC9-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/426345/Trackback.aspx</trackback:ping></item><item><title>Why cout (c++) is so slow under Vista ? [Why cout (c++) is so slow under Vista ?]</title><description>&lt;P&gt;I was very suprise that a program I'm working on took more time to execute on a Core2 duo 2.4 ghz with Vista 64 then on a 4 years old Celeron 1ghz with Ubuntu 8.04. So I comment out a line that display date time at each step and after that the Vista version was very fast. So I write this simple test program :&lt;BR&gt;&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;#include &amp;lt;iostream&amp;gt;&lt;BR&gt;#include &amp;lt;string&amp;gt;&lt;BR&gt;#include &amp;lt;boost/date_time/posix_time/posix_time.hpp&amp;gt;&lt;BR&gt;#include &amp;lt;ctime&amp;gt;&lt;BR&gt;&lt;BR&gt;using namespace std;&lt;BR&gt;&lt;BR&gt;int main()&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;boost::posix_time::ptime begin(boost::gregorian::date(1900, 1, 1), boost::posix_time::hours(0));&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;boost::posix_time::ptime end(boost::gregorian::date(2008, 1, 1), boost::posix_time::hours(0));&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;boost::posix_time::ptime current(begin);&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;time_t start, finish;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;time(&amp;amp;start);&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;while (current &amp;lt; end)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cout &amp;lt;&amp;lt; current &amp;lt;&amp;lt; "\r";&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;current += boost::posix_time::hours(24);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cout &amp;lt;&amp;lt; endl;&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;time(&amp;amp;finish);&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;double elapsed_time = difftime(finish, start);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;cout &amp;lt;&amp;lt; "Done in " &amp;lt;&amp;lt; elapsed_time &amp;lt;&amp;lt; " seconds." &amp;lt;&amp;lt; endl;&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;That simple test take 30 seconds to execute under Vista, and 1 seconde under Ubuntu on the same machine. So any idea why a cout is so slow under Vista ? &lt;BR&gt;&lt;BR&gt;I'm using VS2005 under Vista and gcc under Ubuntu.&lt;/P&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/420816-Why-cout-c-is-so-slow-under-Vista-/'&gt;Why cout (c++) is so slow under Vista ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/420816/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/420816-Why-cout-c-is-so-slow-under-Vista-/</comments><link>http://channel9.msdn.com/forums/TechOff/420816-Why-cout-c-is-so-slow-under-Vista-/</link><pubDate>Mon, 11 Aug 2008 12:58:45 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/420816-Why-cout-c-is-so-slow-under-Vista-/</guid><evnet:views>1235</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/420816/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I was very suprise that a program I'm working on took more time to execute on a Core2 duo 2.4 ghz with Vista 64 then on a 4 years old Celeron 1ghz with Ubuntu 8.04. So I comment out a line that display date time at each step and after that the Vista version was very fast. So I write this simple test&amp;#8230;</evnet:previewtext><dc:creator>cro</dc:creator><slash:comments>17</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/420816-Why-cout-c-is-so-slow-under-Vista-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/420816/Trackback.aspx</trackback:ping></item></channel></rss>