<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by brussell</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/brussell/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by brussell</title>
		<link>http://channel9.msdn.com/Niners/brussell/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/brussell/Discussions</link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 12:09:01 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 12:09:01 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - Implementing a 28-hour day</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">SlackmasterK wrote:</div>
<div class="quoteBody">Technically speaking, one day is 23 hours, 56 minutes, 2 seconds, ~400ms. Why not go with this technically-correct number instead? It even eliminates the necessity for leap day.</div>
</blockquote>
<br>
<br>
How would removing 4 minutes from each day remove the need for an extra day to be added every four years?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/257827-Implementing-a-28-hour-day/5d40f1d3b44746d786ff9deb0019578c#5d40f1d3b44746d786ff9deb0019578c</link>
		<pubDate>Tue, 25 Sep 2007 21:21:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/257827-Implementing-a-28-hour-day/5d40f1d3b44746d786ff9deb0019578c#5d40f1d3b44746d786ff9deb0019578c</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - DateTime.Day problem in C++.NET</title>
		<description><![CDATA[<p>Just realized I was in Release build and wasn't using the variable anywhere yet so it was being optimized away.<br>
<br>
I have switched my code to: String* sDate = dt.ToString( &quot;yyyyMMdd&quot; );<br>
<br>
Thanks!<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/770919f73f27402881a89dea012f2fc6#770919f73f27402881a89dea012f2fc6</link>
		<pubDate>Mon, 07 Nov 2005 18:18:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/770919f73f27402881a89dea012f2fc6#770919f73f27402881a89dea012f2fc6</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - DateTime.Day problem in C++.NET</title>
		<description><![CDATA[<p>Yeah, I realized that.<br>
Month and date should be double digit always.<br>
I am looking to get 20051107.<br>
<br>
That doesn't change the problem I am having with the date.<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/d30f0716ee804825a44e9dea012f2f9c#d30f0716ee804825a44e9dea012f2f9c</link>
		<pubDate>Mon, 07 Nov 2005 18:07:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/d30f0716ee804825a44e9dea012f2f9c#d30f0716ee804825a44e9dea012f2f9c</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - DateTime.Day problem in C++.NET</title>
		<description><![CDATA[<p>I am trying to get the current date in the format of YearMonthDay (2005117) in C&#43;&#43;.NET.<br>
<br>
I have tried all sorts of ways, but can't get the date on it.<br>
<br>
I have tried to take dt.Year and concat dt.Month and dt.Day, but end up with 200511.<br>
<br>
I have tried taking the int dt.Day and pass it into an array of string versions of dates.<br>
The command window gives me a good value, but string pointer it is returning to is bad.<br>
<br>
The last thing I just tried was<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DateTime dt = DateTime::Now;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String* delimStr = S&quot;/&quot;;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Char delimiter[] = delimStr-&gt;ToCharArray();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String* saDate[] = dt.ToShortDateString()-&gt;Split( delimiter );<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String* sDate = saDate[2];<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sDate = String::Concat( sDate, saDate[0] );<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sDate = String::Concat( sDate, saDate[1] );<br>
<br>
and that gets me 200511 also.<br>
<br>
Any ideas? This doesn't make any sense.<br>
Year and month work fine, but no matter what, I can't get a date...<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/130641#130641</link>
		<pubDate>Mon, 07 Nov 2005 17:49:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/130641-DateTimeDay-problem-in-CNET/130641#130641</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - .BATs in C++.NET</title>
		<description><![CDATA[<p>How do I run my .bat from my C&#43;&#43;.NET program?<br>
<br>
I thought I had done this before, but I don't remember how.<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/130610-BATs-in-CNET/130610#130610</link>
		<pubDate>Mon, 07 Nov 2005 15:46:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/130610-BATs-in-CNET/130610#130610</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>2</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Table columns move</title>
		<description><![CDATA[<p><blockquote>
<div>W3bbo wrote:</div>
<div>
<blockquote>
<table>
<tbody>
<tr>
<td><img src="/Themes/AlmostGlass/images/icon-quote.gif"></td>
<td><strong>brussell wrote:</strong><i>I am having a problem with my site.<br>
It is writtin in ASP.NET.<br>
<br>
I have a table that has three rows.<br>
The top row is for a header, the bottom for a footer.<br>
Those each have one column.<br>
<br>
The middle row has two columns.<br>
The left one is for a menubar.<br>
It is supposed to be set to a width of 170 pixels and not move.<br>
The right one is the content for that page.</i></td>
</tr>
</tbody>
</table>
</blockquote>
<br>
<br>
BURN THE HERETIC!<br>
</div>
</blockquote>
<br>
<br>
Saw that coming. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/0162b7d0ee0d4ab5b8539dea012efc87#0162b7d0ee0d4ab5b8539dea012efc87</link>
		<pubDate>Fri, 04 Nov 2005 19:05:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/0162b7d0ee0d4ab5b8539dea012efc87#0162b7d0ee0d4ab5b8539dea012efc87</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Table columns move</title>
		<description><![CDATA[<p>Well, that looks better, thanks.<br>
<br>
The problem with that is it puts the right column right against the menubar in the left column.<br>
<br>
But I can use CellPadding to put a little space back in.<br>
<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/b408fcee190e4985b8069dea012efc30#b408fcee190e4985b8069dea012efc30</link>
		<pubDate>Fri, 04 Nov 2005 18:40:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/b408fcee190e4985b8069dea012efc30#b408fcee190e4985b8069dea012efc30</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Table columns move</title>
		<description><![CDATA[<p>I am having a problem with my site.<br>
It is writtin in ASP.NET.<br>
<br>
I have a table that has three rows.<br>
The top row is for a header, the bottom for a footer.<br>
Those each have one column.<br>
<br>
The middle row has two columns.<br>
The left one is for a menubar.<br>
It is supposed to be set to a width of 170 pixels and not move.<br>
The right one is the content for that page.<br>
<br>
In Visual Studio, everything looks great.<br>
In IE, on some pages, the left column expands based on the width of the browser.<br>
The main page had looked fine in IE until I removed the last line of text (no tags, just text) from the right column of the middle row.<br>
I put it back and the page was fine again.<br>
I viewed source on both versions (with and without the line) and the only difference in code was the line...<br>
<br>
I don't get what is going on. I don't want that cell to expand.<br>
<br>
Can anyone please help?<br>
<br>
Edit: and before anyone says it's a problem with IE, it happens in Firefox too.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/129801#129801</link>
		<pubDate>Fri, 04 Nov 2005 17:17:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/129801-Table-columns-move/129801#129801</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Microsoft flips off its users</title>
		<description><![CDATA[<p><blockquote>
<div>out180 wrote:</div>
<div>
<blockquote></blockquote>
This drives me INSANE with my test bed.&nbsp; I can no longer test against specific patch levels because in order to run Windows Update I need to pass WGA but in order to pass WGA I need to activate Windows.<br>
<br>
I, of course, just disable the add-in in order to continue my efforts but it is a load of crap in the end.&nbsp; I'm not proud of how I get the job done but it is all MS has left me with.<br>
<br>
I guess I could just activate every test box I build.&nbsp; Yeah, in a week my XP activations would get bumped to phone activation and eventually the activation people would question what was going on.&nbsp; Actually, while I can't find it at the moment, MSDN docs recommend
 you not activate if you are using an OS install for testing less than 90 days.&nbsp; That's just peachy if you want an RTM, pure SP1 or SP2 machine.&nbsp; No fully up to date boxes, especially no non-critical patches.&nbsp; Not without activating / passing WGA..</div>
</blockquote>
<br>
<br>
Why not get a volume license install CD that lets you install for a whole company and doesn't require each computer to be activated?<br>
That is what we have here so we don't have to worry about that for test machines and we can install as many times as we want on the test machines<br>
To make it even faster and easier now, we install once as plain, then Ghost it and don't have to worry about installing it again anyway.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/124183-Microsoft-flips-off-its-users/f4892be141604cf985799deb00fb771a#f4892be141604cf985799deb00fb771a</link>
		<pubDate>Tue, 18 Oct 2005 15:24:47 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/124183-Microsoft-flips-off-its-users/f4892be141604cf985799deb00fb771a#f4892be141604cf985799deb00fb771a</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>19</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Quit locking threads</title>
		<description><![CDATA[<p>It looks to me like it was locked because it is almost a year old and was brought back to advertise a product and there are other, more current threads on the first page of Coffee House.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/123216-Quit-locking-threads/2a757948ca194f5d9b769deb00f98070#2a757948ca194f5d9b769deb00f98070</link>
		<pubDate>Thu, 13 Oct 2005 21:19:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/123216-Quit-locking-threads/2a757948ca194f5d9b769deb00f98070#2a757948ca194f5d9b769deb00f98070</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - E-Books: Does Anybody Buy Them?</title>
		<description><![CDATA[<p><blockquote>
<div>reedracer wrote:</div>
<div>If a book is available as an ebook, I prefer that format.&nbsp; Followed by audion and plain old paper.&nbsp; I have an H2210 Pocket PC.&nbsp; I can read it anywhere, do not need a light to read in bed, can keep track of time very easily, and can annotate or bookmark
 anything in context.&nbsp; I prefer Microsoft reader over the rest, as well.</div>
</blockquote>
<br>
<br>
Same with me.<br>
I have also been checking e-books out from the library.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/118450-E-Books-Does-Anybody-Buy-Them/f5b7c8f7d7f849108ffb9deb00ee3b86#f5b7c8f7d7f849108ffb9deb00ee3b86</link>
		<pubDate>Thu, 29 Sep 2005 21:29:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/118450-E-Books-Does-Anybody-Buy-Them/f5b7c8f7d7f849108ffb9deb00ee3b86#f5b7c8f7d7f849108ffb9deb00ee3b86</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Authors Guild sues Google</title>
		<description><![CDATA[<p><blockquote>
<div>harumscarum wrote:</div>
<div><br>
How many of you actually read ebooks? I can not stand reading books off the PC. </div>
</blockquote>
<br>
<br>
I read eBooks on my PPC all the time. In the last couple years, a majority of what I have read has probably been eBooks.<br>
<br>
I prefer MSN Reader, but have found Adobe Reader 2.0 isn't that bad. <br>
It let's me check out eBooks from the county library without actually making a trip there.
<br>
Also don't have to worry about late fees because the eBook just expires.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115214-Authors-Guild-sues-Google/bdbce2a9fdd640fab1539deb00e74ecd#bdbce2a9fdd640fab1539deb00e74ecd</link>
		<pubDate>Wed, 21 Sep 2005 19:18:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115214-Authors-Guild-sues-Google/bdbce2a9fdd640fab1539deb00e74ecd#bdbce2a9fdd640fab1539deb00e74ecd</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>22</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Decrypting strings</title>
		<description><![CDATA[<p><blockquote>
<div>Maurits wrote:</div>
<div>I'm sure there is.&nbsp; Can you post the string?<br>
<br>
Depending on the kind of encryption, and the kind of the data, there are various tricks that can be tried.<br>
<br>
Brute-force works surprisingly often.&nbsp; It helps if you have a zombie army at your beck and call, too. (I mean, I would assume.)<br>
</div>
</blockquote>
<br>
<br>
It is a home made encryption and I'm hoping it isn't easy to decrypt.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/a14d63fbf0f04e9e8f9a9deb00e7f0b6#a14d63fbf0f04e9e8f9a9deb00e7f0b6</link>
		<pubDate>Wed, 21 Sep 2005 19:00:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/a14d63fbf0f04e9e8f9a9deb00e7f0b6#a14d63fbf0f04e9e8f9a9deb00e7f0b6</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - itunes 5 crashes machines</title>
		<description><![CDATA[<p>I have used iTunes on multiple machines, one with Embedded C&#43;&#43; and a bunch other developer stuff with no problems.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115050-itunes-5-crashes-machines/d236759194d1404d8f059deb00e6ef91#d236759194d1404d8f059deb00e6ef91</link>
		<pubDate>Wed, 21 Sep 2005 18:57:41 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115050-itunes-5-crashes-machines/d236759194d1404d8f059deb00e6ef91#d236759194d1404d8f059deb00e6ef91</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>28</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Decrypting strings</title>
		<description><![CDATA[<p><blockquote>
<div>harumscarum wrote:</div>
<div>google?<br>
</div>
</blockquote>
<br>
<br>
I have been trying all sorts of searches on google and haven't come up with anything yet.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/890484e67c5a493984bd9deb00e7eff3#890484e67c5a493984bd9deb00e7eff3</link>
		<pubDate>Wed, 21 Sep 2005 18:53:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/890484e67c5a493984bd9deb00e7eff3#890484e67c5a493984bd9deb00e7eff3</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Decrypting strings</title>
		<description><![CDATA[<p><blockquote>
<div>Manip wrote:</div>
<div>No; there is no such thing as magic. </div>
</blockquote>
<br>
<br>
I can hope (Well, for testing I can hope there is. For releasing software, I hope there isn't)<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/19b3f2c9f6ee4391b7039deb00e7ef95#19b3f2c9f6ee4391b7039deb00e7ef95</link>
		<pubDate>Wed, 21 Sep 2005 18:52:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/19b3f2c9f6ee4391b7039deb00e7ef95#19b3f2c9f6ee4391b7039deb00e7ef95</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Decrypting strings</title>
		<description><![CDATA[<p>Is there a program that takes an encrypted string and tries to find a way to decrypt it?<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/115383#115383</link>
		<pubDate>Wed, 21 Sep 2005 18:44:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/115383-Decrypting-strings/115383#115383</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>9</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Whatever happened to this?</title>
		<description><![CDATA[<p>When I played with one, I could never get it to work that well.<br>
Cool idea though.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/114819-Whatever-happened-to-this/90e03ae748624694a8c69deb00e66bbb#90e03ae748624694a8c69deb00e66bbb</link>
		<pubDate>Tue, 20 Sep 2005 18:31:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/114819-Whatever-happened-to-this/90e03ae748624694a8c69deb00e66bbb#90e03ae748624694a8c69deb00e66bbb</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Virtual PC &amp;amp; Vista</title>
		<description><![CDATA[<p>I had Vista running on VPC.<br>
I found these steps to do it:<br>
<br>
When you get to the “Install Windows” screen, press Shift&#43;F10 to open a command prompt. Type DISKPART at the prompt and use the following commands.
<br>
<br>
<br>
select disk 0 <br>
create partition primary <br>
select volume 1 <br>
format fs=ntfs label=&quot;vista&quot; <br>
<br>
<br>
After this I typed EXIT to leave the utility, reset the VPC, and started the installation again.
<br>
<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/114808-Virtual-PC-amp-Vista/1b13ebdf198643f78f4e9dea012b522d#1b13ebdf198643f78f4e9dea012b522d</link>
		<pubDate>Tue, 20 Sep 2005 15:07:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/114808-Virtual-PC-amp-Vista/1b13ebdf198643f78f4e9dea012b522d#1b13ebdf198643f78f4e9dea012b522d</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - DLLImport in C++</title>
		<description><![CDATA[<p><blockquote>
<div>Sven Groot wrote:</div>
<div>Why not just use the old fashioned way with LoadLibrary and GetProcAddress?</div>
</blockquote>
<br>
<br>
Because this was the first way I found. Not any real reason.<br>
<br>
<br>
Found the solution.<br>
I can name the function whatever I want. So I just named them differently.<br>
Thanks though!<br>
<br>
namespace dbBld91<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder91.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII91( int iType );<br>
}<br>
namespace dbBld90<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder90.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII90( int iType );<br>
}<br>
namespace dbBld80<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder80.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII80( int iType );<br>
}<br>
<br>
I can rewrite that to be:<br>
namespace dbBld<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder91.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII91( int iType );<br>
<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder90.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII90( int iType );<br>
<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder80.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII80( int iType );<br>
}<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/114602-DLLImport-in-C/e9309400a6df4fc4a9e39dea012b3ca4#e9309400a6df4fc4a9e39dea012b3ca4</link>
		<pubDate>Mon, 19 Sep 2005 21:17:03 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/114602-DLLImport-in-C/e9309400a6df4fc4a9e39dea012b3ca4#e9309400a6df4fc4a9e39dea012b3ca4</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - DLLImport in C++</title>
		<description><![CDATA[<p>I have a utility that I am writing in C&#43;&#43;.NET.<br>
I wrote three MFC DLLs.<br>
<br>
I am trying to inlude and use the DLLs in the utility.<br>
<br>
namespace dbBld91<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder91.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII( int iType );<br>
}<br>
namespace dbBld90<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder90.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII( int iType );<br>
}<br>
namespace dbBld80<br>
{<br>
&nbsp;&nbsp;&nbsp; using namespace System::Runtime::InteropServices;<br>
&nbsp;&nbsp;&nbsp; [DllImport(&quot;dbBuilder80.dll&quot;, EntryPoint = &quot;BuildASCII&quot;)]<br>
&nbsp;&nbsp;&nbsp; extern &quot;C&quot; void BuildASCII( int iType );<br>
}<br>
<br>
namespace SymbolDatabaseGenerator<br>
{<br>
&nbsp;&nbsp;&nbsp; ...<br>
&nbsp;&nbsp;&nbsp; dbBld91::BuildASCII( iVendor );<br>
&nbsp;&nbsp;&nbsp; ...<br>
}<br>
<br>
No matter what namespace I tell it to call BuildASCII() from, it uses the DLL that is imported last (currently dbBld80).<br>
<br>
Any ideas how to fix this? I need to use all the DLLs.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/114602-DLLImport-in-C/114602#114602</link>
		<pubDate>Mon, 19 Sep 2005 21:04:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/114602-DLLImport-in-C/114602#114602</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hotmail Sent Items</title>
		<description><![CDATA[<p>Some of the reasons I use Outlook instead of the web interface.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/114575-Hotmail-Sent-Items/7693268677bb4db1908c9deb00e5dc2f#7693268677bb4db1908c9deb00e5dc2f</link>
		<pubDate>Mon, 19 Sep 2005 20:41:12 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/114575-Hotmail-Sent-Items/7693268677bb4db1908c9deb00e5dc2f#7693268677bb4db1908c9deb00e5dc2f</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Typing Speed</title>
		<description><![CDATA[<p>With Dvorak, I am getting 15 WPM with 93% accuracy.<br>
With QWERTY, I am getting 50 WPM with 98% accuracy.</p>
<p>I used to be much faster on QWERTY than I am now that I have been using Dvorak for the last week or so.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/113426-Typing-Speed/eadd1cf401b948b98ca59deb00e2290d#eadd1cf401b948b98ca59deb00e2290d</link>
		<pubDate>Fri, 16 Sep 2005 22:09:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/113426-Typing-Speed/eadd1cf401b948b98ca59deb00e2290d#eadd1cf401b948b98ca59deb00e2290d</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Using MFC and .NET</title>
		<description><![CDATA[<p>I was doing everything right except I forgot to put the function into the .def....
<br>
<br>
Works now, thanks <br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/113329-Using-MFC-and-NET/579433006e33483291f19dea012b1c23#579433006e33483291f19dea012b1c23</link>
		<pubDate>Fri, 16 Sep 2005 18:26:59 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/113329-Using-MFC-and-NET/579433006e33483291f19dea012b1c23#579433006e33483291f19dea012b1c23</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Using MFC and .NET</title>
		<description><![CDATA[<p>I have figured out how to DllImport in my C&#43;&#43;.NET program but I am having problems figuring out how to extern my MFC function from a dll so the C&#43;&#43;.NET program can see it.<br>
<br>
Any ideas?<br>
<br>
I have <br>
public:&nbsp; void BuildASCII( CString sPath ) <br>
in the MFC DLL that needs to be used in the .NET program.<br>
<br>
<br>
<br>
I have <br>
[DllImport(&quot;dbBuilder.dll&quot;, EntryPoint = &quot;BuildASCII&quot;, CharSet = Unicode)]<br>
&nbsp;&nbsp;&nbsp; void BuildASCII( System::String* sPath );<br>
<br>
...<br>
private: System::Void btnStartBuild_Click(System::Object *&nbsp; sender, System::EventArgs *&nbsp; e)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; BuildASCII( &quot;./&quot; );<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
in the .NET.<br>
<br>
<br>
Edit:<br>
In the DLL's .h, I have:<br>
extern &quot;C&quot;<br>
{<br>
&nbsp;&nbsp;&nbsp; void BuildASCII( CString sPath );<br>
}<br>
<br>
<br>
I get this error in the .NET program:<br>
An unhandled exception of type 'System.EntryPointNotFoundException' occurred in Symbol Database Generator.exe<br>
<br>
Additional information: Unable to find an entry point named BuildASCII in DLL dbBuilder.dll.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/113329-Using-MFC-and-NET/0cee07e13d9f416389ee9dea012b1ba9#0cee07e13d9f416389ee9dea012b1ba9</link>
		<pubDate>Fri, 16 Sep 2005 17:20:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/113329-Using-MFC-and-NET/0cee07e13d9f416389ee9dea012b1ba9#0cee07e13d9f416389ee9dea012b1ba9</guid>
		<dc:creator>brussell</dc:creator>
		<slash:comments>6</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/brussell/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>