<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" version="2.0">
<channel>
	<title>Comments for Vishal Monpara's Blog</title>
	
	<link>http://blog.vishalon.net</link>
	<description>Knowledge.ToString()</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:23:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/blogvishalonnetcomment" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="blogvishalonnetcomment" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on How to export thunderbird contents and settings? by Clarisa</title>
		<link>http://blog.vishalon.net/index.php/how-to-export-thunderbird-contents-and-settings/comment-page-1/#comment-16710</link>
		<dc:creator>Clarisa</dc:creator>
		<pubDate>Thu, 29 Jul 2010 02:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/how-to-export-thunderbird-contents-and-settings#comment-16710</guid>
		<description>Well, what do you know, it works like a charm! Thanks so much for this awesome info. Now I can refer to my old mails in my new laptop.</description>
		<content:encoded><![CDATA[<p>Well, what do you know, it works like a charm! Thanks so much for this awesome info. Now I can refer to my old mails in my new laptop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FireFox add-on for easily typing in Indian Scripts by chirag shani</title>
		<link>http://blog.vishalon.net/index.php/firefox-add-on-for-easily-typing-in-indian-scripts/comment-page-1/#comment-16644</link>
		<dc:creator>chirag shani</dc:creator>
		<pubDate>Wed, 28 Jul 2010 05:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/?p=64#comment-16644</guid>
		<description>keep it up
good job</description>
		<content:encoded><![CDATA[<p>keep it up<br />
good job</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stop DTS Package Execution Conditionally Without Failure by Anthony</title>
		<link>http://blog.vishalon.net/index.php/stop-dts-package-execution-conditionally-without-failure/comment-page-1/#comment-16622</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Mon, 26 Jul 2010 15:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/stop-dts-package-execution-conditionally-without-failure#comment-16622</guid>
		<description>I can't get this to work for me.  I'm getting an error code:0, expected end of statement in the first line.  Appreciate if someone can help or advise.  I'm I missing something?

Thanks.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get this to work for me.  I&#8217;m getting an error code:0, expected end of statement in the first line.  Appreciate if someone can help or advise.  I&#8217;m I missing something?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Enable Windows XP Language Toolbar? by manoj rathod</title>
		<link>http://blog.vishalon.net/index.php/how-to-enable-windows-xp-language-toolbar/comment-page-1/#comment-16520</link>
		<dc:creator>manoj rathod</dc:creator>
		<pubDate>Tue, 20 Jul 2010 04:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/how-to-enable-windows-xp-language-toolbar#comment-16520</guid>
		<description>thanks. i did it.</description>
		<content:encoded><![CDATA[<p>thanks. i did it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitmap.save(): A generic error occurred in GDI+ by Eric Duncan</title>
		<link>http://blog.vishalon.net/index.php/bitmapsave-a-generic-error-occurred-in-gdi/comment-page-1/#comment-16388</link>
		<dc:creator>Eric Duncan</dc:creator>
		<pubDate>Wed, 14 Jul 2010 22:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/bitmapsave-a-generic-error-occurred-in-gdi+#comment-16388</guid>
		<description>Actually, the fix is to properly dispose of your objects in order.  In C#, I use the using() syntax, which calls Dispose() for me at the end of the scope.  So, the fix would be to end your scope before calling Save() on the bitmap.


// new image with transparent Alpha layer
using (var bitmap = new Bitmap(330, 18, PixelFormat.Format32bppArgb))
{
  using (var graphics = Graphics.FromImage(bitmap))
  {
    // add some anti-aliasing
    graphics.SmoothingMode = SmoothingMode.AntiAlias;

    using (var font = new Font("Arial", 14.0f, GraphicsUnit.Pixel))
    {
      using (var brush = new SolidBrush(Color.White))
      {
        // draw it
        graphics.DrawString(user.Email, font, brush, 0, 0);
      }
    }
  }

  // setup the response
  Response.Clear();
  Response.ContentType = "image/png";
  Response.BufferOutput = true;

  // write it to the output stream
  bitmap.Save(Response.OutputStream, ImageFormat.Png);
  Response.Flush();
}</description>
		<content:encoded><![CDATA[<p>Actually, the fix is to properly dispose of your objects in order.  In C#, I use the using() syntax, which calls Dispose() for me at the end of the scope.  So, the fix would be to end your scope before calling Save() on the bitmap.</p>
<p>// new image with transparent Alpha layer<br />
using (var bitmap = new Bitmap(330, 18, PixelFormat.Format32bppArgb))<br />
{<br />
  using (var graphics = Graphics.FromImage(bitmap))<br />
  {<br />
    // add some anti-aliasing<br />
    graphics.SmoothingMode = SmoothingMode.AntiAlias;</p>
<p>    using (var font = new Font(&#8220;Arial&#8221;, 14.0f, GraphicsUnit.Pixel))<br />
    {<br />
      using (var brush = new SolidBrush(Color.White))<br />
      {<br />
        // draw it<br />
        graphics.DrawString(user.Email, font, brush, 0, 0);<br />
      }<br />
    }<br />
  }</p>
<p>  // setup the response<br />
  Response.Clear();<br />
  Response.ContentType = &#8220;image/png&#8221;;<br />
  Response.BufferOutput = true;</p>
<p>  // write it to the output stream<br />
  bitmap.Save(Response.OutputStream, ImageFormat.Png);<br />
  Response.Flush();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript : Getting and Setting Caret Position in Textarea by JavaScript: How to Simulate Hyperlink editable list box with TextArea | Techie: Sabarinathan Arthanari</title>
		<link>http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea/comment-page-1/#comment-16098</link>
		<dc:creator>JavaScript: How to Simulate Hyperlink editable list box with TextArea | Techie: Sabarinathan Arthanari</dc:creator>
		<pubDate>Thu, 08 Jul 2010 09:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea#comment-16098</guid>
		<description>[...] Getting Caret/Cursor position  Code for getting Caret/Cursor position is based on the Mr. Alex implementation available in http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea. [...]</description>
		<content:encoded><![CDATA[<p>[...] Getting Caret/Cursor position  Code for getting Caret/Cursor position is based on the Mr. Alex implementation available in <a href="http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea" rel="nofollow">http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Enable Windows XP Language Toolbar? by Oluwavictor</title>
		<link>http://blog.vishalon.net/index.php/how-to-enable-windows-xp-language-toolbar/comment-page-1/#comment-15984</link>
		<dc:creator>Oluwavictor</dc:creator>
		<pubDate>Fri, 02 Jul 2010 09:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/how-to-enable-windows-xp-language-toolbar#comment-15984</guid>
		<description>Thanks a bubch. i used a combination of method 3 &amp; 4. My lang bar is up.</description>
		<content:encoded><![CDATA[<p>Thanks a bubch. i used a combination of method 3 &amp; 4. My lang bar is up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash File (.swf) is not loading in IE, works fine in FF by Max</title>
		<link>http://blog.vishalon.net/index.php/flash-file-swf-is-not-loading-in-ie-works-fine-in-ff/comment-page-1/#comment-15961</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Thu, 01 Jul 2010 15:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/flash-file-swf-is-not-loading-in-ie-works-fine-in-ff#comment-15961</guid>
		<description>Wow...maaad skills!! there i was cursing out IE for my lack of understanding..great stuff</description>
		<content:encoded><![CDATA[<p>Wow&#8230;maaad skills!! there i was cursing out IE for my lack of understanding..great stuff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript : Getting and Setting Caret Position in Textarea by Lucas</title>
		<link>http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea/comment-page-1/#comment-15857</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Wed, 30 Jun 2010 12:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea#comment-15857</guid>
		<description>&lt;a href="#comment-29" rel="nofollow"&gt;@Alex  &lt;/a&gt; 
You are the best!</description>
		<content:encoded><![CDATA[<p><a href="#comment-29" rel="nofollow">@Alex  </a><br />
You are the best!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FireFox add-on for easily typing in Indian Scripts by dr.bipin doshi</title>
		<link>http://blog.vishalon.net/index.php/firefox-add-on-for-easily-typing-in-indian-scripts/comment-page-1/#comment-15759</link>
		<dc:creator>dr.bipin doshi</dc:creator>
		<pubDate>Mon, 28 Jun 2010 13:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vishalon.net/?p=64#comment-15759</guid>
		<description>MAY GOD BLESS YOU..SORRY FOR ERROR</description>
		<content:encoded><![CDATA[<p>MAY GOD BLESS YOU..SORRY FOR ERROR</p>
]]></content:encoded>
	</item>
</channel>
</rss>
