<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for void Nish(char* szBlog);</title>
	<atom:link href="http://voidnish.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://voidnish.wordpress.com</link>
	<description>Nish’s thoughts on MFC, C++/CLI and .NET</description>
	<lastBuildDate>Thu, 16 May 2013 13:12:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Sending mail in an unmanaged VC++ application by Psychoterapeuta lublin</title>
		<link>http://voidnish.wordpress.com/2004/07/16/sending-mail-in-an-unmanaged-vc-application/#comment-1520</link>
		<dc:creator><![CDATA[Psychoterapeuta lublin]]></dc:creator>
		<pubDate>Thu, 16 May 2013 13:12:30 +0000</pubDate>
		<guid isPermaLink="false">/?p=35#comment-1520</guid>
		<description><![CDATA[Thanks for your marvelous posting! I really enjoyed reading it, you 
can be a great author. I will ensure that I bookmark 
your blog and may come back down the road. I want to encourage yourself to continue your great work, have a nice 
morning!]]></description>
		<content:encoded><![CDATA[<p>Thanks for your marvelous posting! I really enjoyed reading it, you<br />
can be a great author. I will ensure that I bookmark<br />
your blog and may come back down the road. I want to encourage yourself to continue your great work, have a nice<br />
morning!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Directory.GetFiles and extensions longer than 3 characters by Oscar Rodriguez</title>
		<link>http://voidnish.wordpress.com/2010/12/30/directory-getfiles-and-extensions-longer-than-3-characters/#comment-1494</link>
		<dc:creator><![CDATA[Oscar Rodriguez]]></dc:creator>
		<pubDate>Thu, 07 Feb 2013 02:30:54 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=291#comment-1494</guid>
		<description><![CDATA[You can call me a Nigromant if you want, but I was trying to deal with Directory.Getfiles thing to get a Directory (and sub directory) size.  I have a code like this:

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim PDRFolder As New DirectoryInfo(&quot;C:\InputMedia&quot;)
        Dim filesInfo9() As FileInfo = PDRFolder.GetFiles(&quot;*.*&quot;, SearchOption.AllDirectories)
        Dim fileSizePDR As Long = 0
        Dim fileSize9 As Long = 0

        &#039;Inicia el calculo de consumo para Playout PDR Folder

        For Each fileInfo9 As FileInfo In filesInfo9
            fileSize9 += fileInfo9.Length
        Next

        fileSizePDR = fileSize9

        lblBytes_PDR.Text = fileSizePDR.ToString
        lblSize_PDR.Text = FormatNumber(fileSizePDR / (1024 * 1024 * 1024), 2) + &quot; GB&quot; + &quot;   (&quot; + lblBytes_PDR.Text + &quot; bytes)&quot;

        lblFolder_PDR.Text = PDRFolder.ToString

        lblHours_PDR.Text = CStr(FormatNumber((fileSizePDR / (1024 * 1024 * 1024)) / 15, 2))

        &#039;Conversion a formato de tiempo para Playout PDR Folder

        Dim value9 As Decimal = lblHours_PDR.Text
        Dim ts9 As TimeSpan = TimeSpan.FromHours(value9)
        Label5.Text = (String.Format(&quot;{0}h {1}m {2}.{3}s&quot;, ts9.Hours, ts9.Minutes, ts9.Seconds, ts9.Milliseconds))

        hor5 = fileSizePDR

        &#039;Fin del calculo de consumo para Playout PDR Folder

        If Val(lblSize_PDR.Text) &gt; 700 Then       &#039;value in GB
            pbPDR.Visible = True          &#039;Muestra la alarma en caso el tama;o sea mayor
            tbLog.Text &amp;= System.DateTime.Now.ToString &amp; vbCrLf
            tbLog.Text &amp;= &quot;Límite de almacenamiento superado en PDR&quot; &amp; vbCrLf
            tbLog.SelectionStart = tbLog.TextLength
            tbLog.ScrollToCaret()
        Else
            pbPDR.Visible = False
        End If
    End Sub



But it has a poorly performance.  I have to check 5 differents directories that has in total about 5 TB.

This is a net framework 2 target project.  Can you help me to improve this code?]]></description>
		<content:encoded><![CDATA[<p>You can call me a Nigromant if you want, but I was trying to deal with Directory.Getfiles thing to get a Directory (and sub directory) size.  I have a code like this:</p>
<p> Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click<br />
        Dim PDRFolder As New DirectoryInfo(&#8220;C:\InputMedia&#8221;)<br />
        Dim filesInfo9() As FileInfo = PDRFolder.GetFiles(&#8220;*.*&#8221;, SearchOption.AllDirectories)<br />
        Dim fileSizePDR As Long = 0<br />
        Dim fileSize9 As Long = 0</p>
<p>        &#8216;Inicia el calculo de consumo para Playout PDR Folder</p>
<p>        For Each fileInfo9 As FileInfo In filesInfo9<br />
            fileSize9 += fileInfo9.Length<br />
        Next</p>
<p>        fileSizePDR = fileSize9</p>
<p>        lblBytes_PDR.Text = fileSizePDR.ToString<br />
        lblSize_PDR.Text = FormatNumber(fileSizePDR / (1024 * 1024 * 1024), 2) + &#8221; GB&#8221; + &#8221;   (&#8221; + lblBytes_PDR.Text + &#8221; bytes)&#8221;</p>
<p>        lblFolder_PDR.Text = PDRFolder.ToString</p>
<p>        lblHours_PDR.Text = CStr(FormatNumber((fileSizePDR / (1024 * 1024 * 1024)) / 15, 2))</p>
<p>        &#8216;Conversion a formato de tiempo para Playout PDR Folder</p>
<p>        Dim value9 As Decimal = lblHours_PDR.Text<br />
        Dim ts9 As TimeSpan = TimeSpan.FromHours(value9)<br />
        Label5.Text = (String.Format(&#8220;{0}h {1}m {2}.{3}s&#8221;, ts9.Hours, ts9.Minutes, ts9.Seconds, ts9.Milliseconds))</p>
<p>        hor5 = fileSizePDR</p>
<p>        &#8216;Fin del calculo de consumo para Playout PDR Folder</p>
<p>        If Val(lblSize_PDR.Text) &gt; 700 Then       &#8216;value in GB<br />
            pbPDR.Visible = True          &#8216;Muestra la alarma en caso el tama;o sea mayor<br />
            tbLog.Text &amp;= System.DateTime.Now.ToString &amp; vbCrLf<br />
            tbLog.Text &amp;= &#8220;Límite de almacenamiento superado en PDR&#8221; &amp; vbCrLf<br />
            tbLog.SelectionStart = tbLog.TextLength<br />
            tbLog.ScrollToCaret()<br />
        Else<br />
            pbPDR.Visible = False<br />
        End If<br />
    End Sub</p>
<p>But it has a poorly performance.  I have to check 5 differents directories that has in total about 5 TB.</p>
<p>This is a net framework 2 target project.  Can you help me to improve this code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual C++ WinRT FAQ &#8211; connecting to localhost by Ajay</title>
		<link>http://voidnish.wordpress.com/2012/04/18/visual-c-winrt-faq-connecting-to-localhost/#comment-1493</link>
		<dc:creator><![CDATA[Ajay]]></dc:creator>
		<pubDate>Tue, 05 Feb 2013 19:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=377#comment-1493</guid>
		<description><![CDATA[How is this possible? Can you explain Foster please with simple sample?

thanks]]></description>
		<content:encoded><![CDATA[<p>How is this possible? Can you explain Foster please with simple sample?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting default focus to a particular control via XAML by http://tinyurl.com/aftehowe21857</title>
		<link>http://voidnish.wordpress.com/2006/07/07/setting-default-focus-to-a-particular-control-via-xaml/#comment-1492</link>
		<dc:creator><![CDATA[http://tinyurl.com/aftehowe21857]]></dc:creator>
		<pubDate>Tue, 29 Jan 2013 21:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.voidnish.com/?p=129#comment-1492</guid>
		<description><![CDATA[“Setting default focus to a particular control via XAML &#124; void Nish(char* szBlog);” 
was a remarkable posting, cannot wait to read through far more of 
ur postings. Time to spend numerous time online hehe.
Thanks -Amanda]]></description>
		<content:encoded><![CDATA[<p>“Setting default focus to a particular control via XAML | void Nish(char* szBlog);”<br />
was a remarkable posting, cannot wait to read through far more of<br />
ur postings. Time to spend numerous time online hehe.<br />
Thanks -Amanda</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual C++ WinRT FAQ &#8211; connecting to localhost by Jeremy Foster</title>
		<link>http://voidnish.wordpress.com/2012/04/18/visual-c-winrt-faq-connecting-to-localhost/#comment-1490</link>
		<dc:creator><![CDATA[Jeremy Foster]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 17:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=377#comment-1490</guid>
		<description><![CDATA[It&#039;s not so much a technical limitation as it is a certification constraint. Actually, when you&#039;re developing your app, you&#039;ll notice that you _can_ access localhost (or 127.0.0.1 or 192.168.0.x). But when you try to get your app certified for the Windows Store, they&#039;re going to check that you aren&#039;t implementing an architecture that relies on local services. If you create an enterprise app that you don&#039;t need to publish to the Store for distribution and monetization, you are free to connect to the localhost.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s not so much a technical limitation as it is a certification constraint. Actually, when you&#8217;re developing your app, you&#8217;ll notice that you _can_ access localhost (or 127.0.0.1 or 192.168.0.x). But when you try to get your app certified for the Windows Store, they&#8217;re going to check that you aren&#8217;t implementing an architecture that relies on local services. If you create an enterprise app that you don&#8217;t need to publish to the Store for distribution and monetization, you are free to connect to the localhost.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selecting a default folder with SHBrowseForFolder by nelsonthannickal</title>
		<link>http://voidnish.wordpress.com/2006/02/17/selecting-a-default-folder-with-shbrowseforfolder/#comment-1487</link>
		<dc:creator><![CDATA[nelsonthannickal]]></dc:creator>
		<pubDate>Tue, 04 Dec 2012 11:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.voidnish.com/?p=113#comment-1487</guid>
		<description><![CDATA[How can we hide network drives?]]></description>
		<content:encoded><![CDATA[<p>How can we hide network drives?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splitting a C++/CLI property&#8217;s definition and implementation into separate cpp/header files by dsflkdfsgdfgf</title>
		<link>http://voidnish.wordpress.com/2010/10/26/splitting-a-ccli-propertys-definition-and-implementation-into-separate-cppheader-files/#comment-1486</link>
		<dc:creator><![CDATA[dsflkdfsgdfgf]]></dc:creator>
		<pubDate>Thu, 15 Nov 2012 12:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=289#comment-1486</guid>
		<description><![CDATA[A have been searching for this all day and I couldn&#039;t find anything. You solved my problem. Thank you very much.  ^_^]]></description>
		<content:encoded><![CDATA[<p>A have been searching for this all day and I couldn&#8217;t find anything. You solved my problem. Thank you very much.  ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Difference between std::move and std::forward by Haider M Rizvi</title>
		<link>http://voidnish.wordpress.com/2012/05/22/difference-between-stdmove-and-stdforward/#comment-1484</link>
		<dc:creator><![CDATA[Haider M Rizvi]]></dc:creator>
		<pubDate>Tue, 16 Oct 2012 10:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=396#comment-1484</guid>
		<description><![CDATA[Really helpful post..............]]></description>
		<content:encoded><![CDATA[<p>Really helpful post&#8230;&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual C++ WinRT FAQ &#8211; Does C++/CX produce managed code? by Nish</title>
		<link>http://voidnish.wordpress.com/2012/03/20/visual-c-winrt-faq-does-ccx-produce-managed-code/#comment-1483</link>
		<dc:creator><![CDATA[Nish]]></dc:creator>
		<pubDate>Tue, 18 Sep 2012 13:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=356#comment-1483</guid>
		<description><![CDATA[The winmd files are metadata and they use the same format as that specified in the CLI specification. Any code that&#039;s generated is 100% native.]]></description>
		<content:encoded><![CDATA[<p>The winmd files are metadata and they use the same format as that specified in the CLI specification. Any code that&#8217;s generated is 100% native.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual C++ WinRT FAQ &#8211; Does C++/CX produce managed code? by Karim</title>
		<link>http://voidnish.wordpress.com/2012/03/20/visual-c-winrt-faq-does-ccx-produce-managed-code/#comment-1482</link>
		<dc:creator><![CDATA[Karim]]></dc:creator>
		<pubDate>Tue, 18 Sep 2012 13:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://voidnish.wordpress.com/?p=356#comment-1482</guid>
		<description><![CDATA[Are you sure that C++/CX produces 100% native binaries ? 
Check this out : http://mariusbancila.ro/blog/2011/10/30/winrt-and-winmd-files/]]></description>
		<content:encoded><![CDATA[<p>Are you sure that C++/CX produces 100% native binaries ?<br />
Check this out : <a href="http://mariusbancila.ro/blog/2011/10/30/winrt-and-winmd-files/" rel="nofollow">http://mariusbancila.ro/blog/2011/10/30/winrt-and-winmd-files/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
