﻿<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>BLOG.CSHARPHELPER.COM: Recent Comments</title><link>http://blog.csharphelper.com</link><description /><generator>Quick Blogcast</generator><lastBuildDate>Sat, 18 May 2013 18:14:53 GMT</lastBuildDate><item><title>Comment on Draw rotated text in C#</title><link>http://blog.csharphelper.com/2009/11/14/draw-rotated-text-in-c.aspx#comment-19420045</link><dc:creator>Akshatha</dc:creator><description>&lt;span&gt; &lt;/span&gt;Thanks A Ton !! It Helped Me A Lot :)</description><guid isPermaLink="true">http://blog.csharphelper.com/2009/11/14/draw-rotated-text-in-c.aspx#comment-19420045</guid><pubDate>Tue, 07 May 2013 08:52:04 GMT</pubDate></item><item><title>Comment on Calculate the Nth root of a number in C#</title><link>http://blog.csharphelper.com/2010/10/15/calculate-the-nth-root-of-a-number-in-c.aspx#comment-19390969</link><dc:creator>Rod Stephens</dc:creator><description>The intent here was to just do the job, not to show how to calculate the number yourself. If you do want to do it yourself, you can use Newton's method as shown in this example:
&lt;p&gt; &lt;/p&gt;
&lt;a href="http://blog.csharphelper.com/2010/07/21/use-newtons-method-to-find-the-roots-of-equations-in-c.aspx"&gt;Use Newton's method to find the roots of equations in C#&lt;/a&gt;
&lt;p&gt; &lt;/p&gt;
Simply find the roots of the equation Y = X&lt;sup&gt;N&lt;/sup&gt;.
&lt;p&gt; &lt;/p&gt;
Or you can use subdivision. Pick an upper and lower bound, perhaps lower = 1 and upper = N / 2. Then check the value in the middle M. If M&lt;sup&gt;N&lt;/sup&gt; &amp;gt; N, set lower = M and repeat. If M&lt;sup&gt;N&lt;/sup&gt; &amp;lt; N, set upper = M and repeat.
&lt;p&gt; &lt;/p&gt;
Either way it still doesn't need to be recursive, though.</description><guid isPermaLink="true">http://blog.csharphelper.com/2010/10/15/calculate-the-nth-root-of-a-number-in-c.aspx#comment-19390969</guid><pubDate>Wed, 01 May 2013 15:57:55 GMT</pubDate></item><item><title>Comment on Calculate the Nth root of a number in C#</title><link>http://blog.csharphelper.com/2010/10/15/calculate-the-nth-root-of-a-number-in-c.aspx#comment-19389299</link><dc:creator>TheGuyWhoDisliked</dc:creator><description>&lt;span&gt; &lt;/span&gt;This uses the math features of C#. This does not do it recursively. Those are the reasons I disliked this.</description><guid isPermaLink="true">http://blog.csharphelper.com/2010/10/15/calculate-the-nth-root-of-a-number-in-c.aspx#comment-19389299</guid><pubDate>Mon, 29 Apr 2013 23:58:22 GMT</pubDate></item><item><title>Comment on Apply filters to images to perform edge detection, smoothing, embossing, and more in C#</title><link>http://blog.csharphelper.com/2010/03/14/apply-filters-to-images-to-perform-edge-detection-smoothing-embossing-and-more-in-c.aspx#comment-19307339</link><dc:creator>Rod Stephens</dc:creator><description>&lt;span&gt; &lt;/span&gt;See this example:
&lt;p&gt; &lt;/p&gt;
&lt;a href="http://blog.csharphelper.com/2013/04/07/apply-a-filter-to-make-a-color-embossed-image-in-c.aspx"&gt;Apply a filter to make a color embossed image in C#&lt;/a&gt;
&lt;p&gt; &lt;/p&gt;</description><guid isPermaLink="true">http://blog.csharphelper.com/2010/03/14/apply-filters-to-images-to-perform-edge-detection-smoothing-embossing-and-more-in-c.aspx#comment-19307339</guid><pubDate>Sun, 07 Apr 2013 15:14:26 GMT</pubDate></item><item><title>Comment on Remove the X Close button from a form's system menu in C#</title><link>http://blog.csharphelper.com/2011/11/04/remove-the-x-close-button-from-a-forms-system-menu-in-c.aspx#comment-19246874</link><dc:creator>Rod Stephens</dc:creator><description>&lt;span&gt; &lt;/span&gt;True. You are usually better off removing the menu and X by setting the form's ControlBox property to false. Of course then you also lose the minimize and maximize buttons.&lt;br /&gt;
&lt;br /&gt;
Or you can catch the form's FormClosing event, figure out why the form is closing, a prevent it if the user didn't use the button or whatever that you provided.&lt;br /&gt;
&lt;br /&gt;
Probably the best bet is to either leave the Close item and X there and deal with it in FormClosing, or remove the whole control box.&lt;br /&gt;
&lt;br /&gt;
(The X button has been a bit of a headache for quite a few years.)</description><guid isPermaLink="true">http://blog.csharphelper.com/2011/11/04/remove-the-x-close-button-from-a-forms-system-menu-in-c.aspx#comment-19246874</guid><pubDate>Mon, 01 Apr 2013 02:37:49 GMT</pubDate></item><item><title>Comment on Remove the X Close button from a form's system menu in C#</title><link>http://blog.csharphelper.com/2011/11/04/remove-the-x-close-button-from-a-forms-system-menu-in-c.aspx#comment-19230268</link><dc:creator>Christopher Harris</dc:creator><description>&lt;span&gt; &lt;/span&gt;While this does remove the Close system menu item, it does not work to "Remove the X Close button from a form's system menu in C#".  Note: the 'X' button is still visible.  This only disabled the button.</description><guid isPermaLink="true">http://blog.csharphelper.com/2011/11/04/remove-the-x-close-button-from-a-forms-system-menu-in-c.aspx#comment-19230268</guid><pubDate>Fri, 29 Mar 2013 11:28:03 GMT</pubDate></item><item><title>Comment on Draw a simple robot arm in C#</title><link>http://blog.csharphelper.com/2011/08/25/draw-a-simple-robot-arm-in-c.aspx#comment-19175710</link><dc:creator>Rod Stephens</dc:creator><description>&lt;span&gt; &lt;/span&gt;I'm not sure. My guess would be that the PictureBox's Paint event isn't hooked up to the code properly.&lt;br /&gt;
&lt;br /&gt;
Most of the examples on this web site only include the most interesting pieces of code and often there is other code that you need to include to make them work. To see all of the code, you should download the example program by clicking the Download button below the text. I suspect the example will work for you.</description><guid isPermaLink="true">http://blog.csharphelper.com/2011/08/25/draw-a-simple-robot-arm-in-c.aspx#comment-19175710</guid><pubDate>Fri, 22 Mar 2013 22:32:29 GMT</pubDate></item><item><title>Comment on Remove characters that are not printable ASCII characters from a string in C#</title><link>http://blog.csharphelper.com/2012/03/23/remove-characters-that-are-not-printable-ascii-characters-from-a-string-in-c.aspx#comment-19150018</link><dc:creator>Marcone</dc:creator><description>&lt;span&gt; &lt;/span&gt;Thanks, this was the only one code that resolve my problem.</description><guid isPermaLink="true">http://blog.csharphelper.com/2012/03/23/remove-characters-that-are-not-printable-ascii-characters-from-a-string-in-c.aspx#comment-19150018</guid><pubDate>Tue, 19 Mar 2013 17:55:37 GMT</pubDate></item><item><title>Comment on Draw a simple robot arm in C#</title><link>http://blog.csharphelper.com/2011/08/25/draw-a-simple-robot-arm-in-c.aspx#comment-19145790</link><dc:creator>me</dc:creator><description>&lt;span&gt; &lt;/span&gt;hi....&lt;br /&gt;
&lt;br /&gt;
i have try this "Draw a simple robot arm in C#" by using your code but why the picture i have copied did not appear in the "picCanvas" in C#&lt;br /&gt;
&lt;br /&gt;
begineer C#...</description><guid isPermaLink="true">http://blog.csharphelper.com/2011/08/25/draw-a-simple-robot-arm-in-c.aspx#comment-19145790</guid><pubDate>Tue, 19 Mar 2013 01:41:25 GMT</pubDate></item><item><title>Comment on Use steganography to hide one picture inside another in C#</title><link>http://blog.csharphelper.com/2011/11/09/use-steganography-to-hide-one-picture-inside-another-in-c.aspx#comment-19087454</link><dc:creator>Robert Gawron</dc:creator><description>Hi,
&lt;p&gt; &lt;/p&gt;
I implemented this algorithm in Python, in my version both images have the same sizes and the data of hidden image is stored on only two lowest bits.
&lt;p&gt; &lt;/p&gt;
The result (=quality) is a bit worse, it can be checked below, the source code in Python is also available:
&lt;p&gt; &lt;/p&gt;
&lt;ul&gt;
    &lt;a href="http://robertgawron.blogspot.com/2011/07/how-to-hide-image-inside-anther-image.html"&gt;How to hide an image inside another image?&lt;/a&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
Regards.</description><guid isPermaLink="true">http://blog.csharphelper.com/2011/11/09/use-steganography-to-hide-one-picture-inside-another-in-c.aspx#comment-19087454</guid><pubDate>Thu, 07 Mar 2013 19:42:47 GMT</pubDate></item></channel></rss>