<?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 on: VFP 5 on Windows 7 Issue</title>
	<atom:link href="http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/feed" rel="self" type="application/rss+xml" />
	<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/</link>
	<description>Shedding some light on topics of software development, Visual FoxPro, saving our planet, paying it forward, and anything else I find important enough to share.</description>
	<lastBuildDate>Sun, 13 Jan 2019 18:50:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-556</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 24 Feb 2010 01:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-556</guid>
		<description>fn is a field name of table tn.&lt;br /&gt;before this code can work correct &lt;br /&gt;&lt;br /&gt;sele tn&lt;br /&gt;?fn&lt;br /&gt;&lt;br /&gt;but, on windows 7&lt;br /&gt;it can&#039;t work unless you express clearly like this&lt;br /&gt;&lt;br /&gt;?tn-&gt;fn&lt;br /&gt;&lt;br /&gt;anyone encounter same problem like me?</description>
		<content:encoded><![CDATA[<p>fn is a field name of table tn.<br />before this code can work correct </p>
<p>sele tn<br />?fn</p>
<p>but, on windows 7<br />it can&#39;t work unless you express clearly like this</p>
<p>?tn->fn</p>
<p>anyone encounter same problem like me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Schummer</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-557</link>
		<dc:creator>Rick Schummer</dc:creator>
		<pubDate>Thu, 03 Dec 2009 18:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-557</guid>
		<description>Rohan,&lt;br /&gt;&lt;br /&gt;There are a lot of materials on the Internet. Contact me via my Web site to discuss in finer detail.&lt;br /&gt;&lt;br /&gt;Rick</description>
		<content:encoded><![CDATA[<p>Rohan,</p>
<p>There are a lot of materials on the Internet. Contact me via my Web site to discuss in finer detail.</p>
<p>Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rohan</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-558</link>
		<dc:creator>rohan</dc:creator>
		<pubDate>Thu, 03 Dec 2009 18:11:50 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-558</guid>
		<description>Hi Rick,&lt;br /&gt;&lt;br /&gt;I was trying to find out someone who could guide one of my customers on their Foxpro Usage. Is there materials available on the internet that could help handle their environment with more ease.&lt;br /&gt;&lt;br /&gt;Kindly let me know if you could shed some light.&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Rohan Thampi&lt;br /&gt;rohanaby@gmail.com</description>
		<content:encoded><![CDATA[<p>Hi Rick,</p>
<p>I was trying to find out someone who could guide one of my customers on their Foxpro Usage. Is there materials available on the internet that could help handle their environment with more ease.</p>
<p>Kindly let me know if you could shed some light.</p>
<p>Regards<br />Rohan Thampi<br /><a href="mailto:rohanaby@gmail.com">rohanaby@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wOOdy</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-559</link>
		<dc:creator>wOOdy</dc:creator>
		<pubDate>Wed, 02 Dec 2009 06:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-559</guid>
		<description>When VFP runs the first time, it needs to create that initial Registry entries, if it doesn&#039;t find them. As you know, the moniker &quot;application&quot; (which is the same as the _VFP objectreference) is referring to the COM-object side of VFP (This means: everytime you&#039;re acccessing _VFP, you&#039;re talking with VFP from the outside.) But for registering COM-objects you have to be an administrator, thus that&#039;s why the initial first start of VFP has to be in Admin mode. In WinXP most users have been administrators by default, thus you didn&#039;t noticed that requirement, but with the now enforced security levels of Vista and Win7, you need to explicitely switch the app into admin-rights.</description>
		<content:encoded><![CDATA[<p>When VFP runs the first time, it needs to create that initial Registry entries, if it doesn&#39;t find them. As you know, the moniker &quot;application&quot; (which is the same as the _VFP objectreference) is referring to the COM-object side of VFP (This means: everytime you&#39;re acccessing _VFP, you&#39;re talking with VFP from the outside.) But for registering COM-objects you have to be an administrator, thus that&#39;s why the initial first start of VFP has to be in Admin mode. In WinXP most users have been administrators by default, thus you didn&#39;t noticed that requirement, but with the now enforced security levels of Vista and Win7, you need to explicitely switch the app into admin-rights.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-560</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 02 Dec 2009 04:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-560</guid>
		<description>HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\Driver para o Microsoft Visual FoxPro - Add write permisson for user (Sorry, my english is bad)</description>
		<content:encoded><![CDATA[<p>HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\Driver para o Microsoft Visual FoxPro &#8211; Add write permisson for user (Sorry, my english is bad)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Schummer</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-561</link>
		<dc:creator>Rick Schummer</dc:creator>
		<pubDate>Mon, 30 Nov 2009 18:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-561</guid>
		<description>No, this is strictly a registry problem. Apparently once you run as an administrator the problem disappears even for the non-administrators. I may have run as an administrator in my initial testing. If this is the case it is a simple workaround.</description>
		<content:encoded><![CDATA[<p>No, this is strictly a registry problem. Apparently once you run as an administrator the problem disappears even for the non-administrators. I may have run as an administrator in my initial testing. If this is the case it is a simple workaround.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/comment-page-1/#comment-562</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Mon, 30 Nov 2009 18:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://rickschummer.com/blog2/2009/11/vfp-5-on-windows-7-issue/#comment-562</guid>
		<description>Strange. The only think I can think is that it was trying to create a foxuser.dbf file in a place win7 doesn&#039;t want you to write to. &lt;br /&gt;&lt;br /&gt;Not sure why you couldn&#039;t duplicate it though.</description>
		<content:encoded><![CDATA[<p>Strange. The only think I can think is that it was trying to create a foxuser.dbf file in a place win7 doesn&#39;t want you to write to. </p>
<p>Not sure why you couldn&#39;t duplicate it though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
