<?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/"
		>
<channel>
	<title>Comments for Neal's Blog</title>
	<atom:link href="http://www.applicationgroup.com/blog/index.php?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.applicationgroup.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 11 Jan 2010 14:42:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Maintaining Form Position when closing and reopening in a multi-monitor environment by Neal</title>
		<link>http://www.applicationgroup.com/blog/?p=9&#038;cpage=1#comment-537</link>
		<dc:creator>Neal</dc:creator>
		<pubDate>Mon, 11 Jan 2010 14:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.applicationgroup.com/blog/?p=9#comment-537</guid>
		<description>It has come to my attention that I did not include one of the required functions for this code.  In the FormClosing section I call a function &quot;stringtoasc&quot; which I did not include.  The purpose of this function is to remove ASCII control characters and non-ASCII characters from the string.  This is required to determine the correct screen that the form is on.  So here&#039;s the code for that function:

    &#039;********************************************************************************************
    &#039; Return only normal ASCII Characters (characters on the keyboard) from a string
    &#039;   Remove ASCII code 63 - causing problem in screen display name matching
    &#039;********************************************************************************************
    Private Function stringtoasc(ByVal strVal As String) As String
        &#039;       MsgBox(strVal.Length)
        stringtoasc = &quot;&quot;
        For i As Integer = 1 To strVal.Length
            If Asc(Mid(strVal, i, 1)) &gt; 31 And Asc(Mid(strVal, i, 1)) &lt; 127 And Asc(Mid(strVal, i, 1)) &lt;&gt; 63 Then
                stringtoasc = stringtoasc &amp; Mid(strVal, i, 1)
            End If
        Next
        &#039;        MsgBox(stringtoasc.Length)
    End Function</description>
		<content:encoded><![CDATA[<p>It has come to my attention that I did not include one of the required functions for this code.  In the FormClosing section I call a function &#8220;stringtoasc&#8221; which I did not include.  The purpose of this function is to remove ASCII control characters and non-ASCII characters from the string.  This is required to determine the correct screen that the form is on.  So here&#8217;s the code for that function:</p>
<p>    &#8216;********************************************************************************************<br />
    &#8216; Return only normal ASCII Characters (characters on the keyboard) from a string<br />
    &#8216;   Remove ASCII code 63 &#8211; causing problem in screen display name matching<br />
    &#8216;********************************************************************************************<br />
    Private Function stringtoasc(ByVal strVal As String) As String<br />
        &#8216;       MsgBox(strVal.Length)<br />
        stringtoasc = &#8220;&#8221;<br />
        For i As Integer = 1 To strVal.Length<br />
            If Asc(Mid(strVal, i, 1)) > 31 And Asc(Mid(strVal, i, 1)) < 127 And Asc(Mid(strVal, i, 1)) <> 63 Then<br />
                stringtoasc = stringtoasc &#038; Mid(strVal, i, 1)<br />
            End If<br />
        Next<br />
        &#8216;        MsgBox(stringtoasc.Length)<br />
    End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Copy a large number of small files by chichi</title>
		<link>http://www.applicationgroup.com/blog/?p=3&#038;cpage=1#comment-536</link>
		<dc:creator>chichi</dc:creator>
		<pubDate>Thu, 08 Oct 2009 00:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.applicationgroup.com/blog/?p=3#comment-536</guid>
		<description>Teaming the NICs and use Richcopy.  Copy files in safe mode with network</description>
		<content:encoded><![CDATA[<p>Teaming the NICs and use Richcopy.  Copy files in safe mode with network</p>
]]></content:encoded>
	</item>
</channel>
</rss>

