<?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 mw5300</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/mw5300/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 mw5300</title>
		<link>http://channel9.msdn.com/Niners/mw5300/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/mw5300/Discussions</link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 23:19:22 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 23:19:22 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Tech Off - RichTextBox .NET FontStyle.Bold problem</title>
		<description><![CDATA[<p>Thanks Sven! It works great.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/f156b19f7dae49d7b3ae9dea0130ffdf#f156b19f7dae49d7b3ae9dea0130ffdf</link>
		<pubDate>Mon, 05 Dec 2005 18:30:56 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/f156b19f7dae49d7b3ae9dea0130ffdf#f156b19f7dae49d7b3ae9dea0130ffdf</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - RichTextBox .NET FontStyle.Bold problem</title>
		<description><![CDATA[<p>&quot;EDIT: It doesn't solve the multiple styles in one selection problem, though.&quot;<br>
<br>
Is there a way to solve this problem? Basically I wan't it to respect if parts the selection are already bold, italic or underline and just toggle the bold italic or underline.<br>
<br>
Thanks!<br>
Mark<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/2f16e1f00daa4b80a8219dea0130ff0e#2f16e1f00daa4b80a8219dea0130ff0e</link>
		<pubDate>Sat, 03 Dec 2005 23:48:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/2f16e1f00daa4b80a8219dea0130ff0e#2f16e1f00daa4b80a8219dea0130ff0e</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - RichTextBox .NET FontStyle.Bold problem</title>
		<description><![CDATA[<p><strong></strong>Thanks, SimonJ.<br>
<br>
Is there any way I can preserve all the formating of the text even if the selection spans some Italic text, and some Underlined text when I add bold? I'm looking for the MS Word style of changing Bold, Italic and Underline.<br>
<br>
P.S. I don't know VB, I only know C#.<br>
<br>
Thanks for your help,<br>
Mark<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/dc1776e09107455d8c699dea0130fd67#dc1776e09107455d8c699dea0130fd67</link>
		<pubDate>Thu, 01 Dec 2005 20:29:38 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/dc1776e09107455d8c699dea0130fd67#dc1776e09107455d8c699dea0130fd67</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - RichTextBox .NET FontStyle.Bold problem</title>
		<description><![CDATA[<p>So I have this RichTextBox in a winforms app written in C#. I am trying to make some toolbar buttons change some selected text to bold, italic, or underline. Right now I am using some code that looks like this:<br>
if (this.MainRichBox.SelectionFont != null)<br>
&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp; System.Drawing.Font currentFont = this.MainRichBox.SelectionFont;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.Drawing.FontStyle newFontStyle;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (this.MainRichBox.SelectionFont.Bold == true)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; newFontStyle = FontStyle.Regular;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.Bold.Checked = false;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp; else<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; newFontStyle = FontStyle.Bold;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.Bold.Checked = true;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.MainRichBox.SelectionFont = new Font(<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; currentFont.FontFamily,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; currentFont.Size,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; newFontStyle<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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; }<br>
<br>
That I call whenever I press the bold button(for example). My problem is that if I try to make some Italic text Bold, then it stops being Italic and becaomes bold. I want it to be both Bold and Italic when I click Bold on some selected Italic text.<br>
<br>
Thanks,<br>
Mark<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/138209#138209</link>
		<pubDate>Thu, 01 Dec 2005 17:06:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/138209-RichTextBox-NET-FontStyleBold-problem/138209#138209</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>23</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - RSS vs. ATOM?</title>
		<description><![CDATA[<p>To tell you the truth, I have never seen a reason to use atom over rss. I have heard allot of people make vague comments on how atom is better, but never any proof or examples. Also, one time I wanted to make a web program that generates feeds. So I went
 to the rss site and saw a sample document and the spec right there. The I went to the Atom site and couldn't find any simple way to learn how to use it. RSS is better because it is simply, it works, and it can be extended. I don't see any reason for MS to
 use Atom over RSS.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/122603-RSS-vs-ATOM/c5566d7b93a94f4db0be9deb00f7d742#c5566d7b93a94f4db0be9deb00f7d742</link>
		<pubDate>Wed, 12 Oct 2005 14:43:10 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/122603-RSS-vs-ATOM/c5566d7b93a94f4db0be9deb00f7d742#c5566d7b93a94f4db0be9deb00f7d742</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - I&#39;m back</title>
		<description><![CDATA[<p>It stands for PHP Hypertext Preprocessor. It's an open source scripting language similar to .Net. p.s. I didn't see your post, littleguru.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/121707-Im-back/6d9d5d92e745472aa11a9deb00f54b73#6d9d5d92e745472aa11a9deb00f54b73</link>
		<pubDate>Sun, 09 Oct 2005 23:16:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/121707-Im-back/6d9d5d92e745472aa11a9deb00f54b73#6d9d5d92e745472aa11a9deb00f54b73</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>15</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - When does learning and developing become fun?</title>
		<description><![CDATA[<p>It's fun from the time you program the &quot;hello, world&quot; program. If your not having fun then your not a programmer <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' />. j/k of course. Sort of.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/121916-When-does-learning-and-developing-become-fun/c5b9aa7ac1e84d29b47b9deb00f60fcc#c5b9aa7ac1e84d29b47b9deb00f60fcc</link>
		<pubDate>Sun, 09 Oct 2005 23:12:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/121916-When-does-learning-and-developing-become-fun/c5b9aa7ac1e84d29b47b9deb00f60fcc#c5b9aa7ac1e84d29b47b9deb00f60fcc</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>26</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Thinking of moving blogs</title>
		<description><![CDATA[<p>Personally I host my own blog using Wordpress. Its really easy to setup and has a good interface.<br>
<br>
Mark<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/108268-Thinking-of-moving-blogs/53b32720c36e448b96519dec0076ffef#53b32720c36e448b96519dec0076ffef</link>
		<pubDate>Wed, 07 Sep 2005 12:21:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/108268-Thinking-of-moving-blogs/53b32720c36e448b96519dec0076ffef#53b32720c36e448b96519dec0076ffef</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Learning C#</title>
		<description><![CDATA[<p>That book looks cool <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-11.gif' alt='Cool' />. Maybe I'll get the 2005 version when it comes out. Does anyone know of any free online resources? Also, I have MSDN, is there stuff on that?<br>
<br>
Thanks!<br>
Mark<br>
<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/108162-Learning-C/dd599e0bd9b74a5a8ebf9dec0076cbf3#dd599e0bd9b74a5a8ebf9dec0076cbf3</link>
		<pubDate>Wed, 07 Sep 2005 02:10:16 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/108162-Learning-C/dd599e0bd9b74a5a8ebf9dec0076cbf3#dd599e0bd9b74a5a8ebf9dec0076cbf3</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Learning C#</title>
		<description><![CDATA[<p>I am mostly new to programming, however I have done a little PHP work (gasp!) in the past (I got up to objects). I am wondering what is the best way to go about learning C#? It seems most of the books, and tutorials are for Java programmers; I have never
 touched Java (hopefully I wont have to). Does anyone know of tutorials, books, or other good ways of learning C#?<br>
<br>
Thanks guys,<br>
Mark<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/108162-Learning-C/108162#108162</link>
		<pubDate>Wed, 07 Sep 2005 01:34:05 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/108162-Learning-C/108162#108162</guid>
		<dc:creator>mw5300</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/mw5300/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>