<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DevX.com Forums - VB Classic</title>
		<link>http://forums.devx.com/</link>
		<description>VB6 and earlier.</description>
		<language>en</language>
		<lastBuildDate>Sun, 26 May 2013 00:51:56 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.devx.com/images/misc/rss.png</url>
			<title>DevX.com Forums - VB Classic</title>
			<link>http://forums.devx.com/</link>
		</image>
		<item>
			<title>Visual Basic</title>
			<link>http://forums.devx.com/showthread.php?185247-Visual-Basic&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 00:42:50 GMT</pubDate>
			<description><![CDATA[I need someone's help, I created a work book in Excel, I have two tabs Inventory control and count sheet. I want to link some information on the Inventory control sheet to the count sheet. How would I do that using VB.]]></description>
			<content:encoded><![CDATA[<div>I need someone's help, I created a work book in Excel, I have two tabs Inventory control and count sheet. I want to link some information on the Inventory control sheet to the count sheet. How would I do that using VB.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>jdean1081</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185247-Visual-Basic</guid>
		</item>
		<item>
			<title>How to detect user activity?</title>
			<link>http://forums.devx.com/showthread.php?185245-How-to-detect-user-activity&amp;goto=newpost</link>
			<pubDate>Sun, 19 May 2013 18:38:03 GMT</pubDate>
			<description><![CDATA[Is there a way to determine if any keyboard or mouse activity has occurred in a predetermined time interval? I'm trying to find a way to automatically disable my programs edit mode if there has been no activity (i.e. person entered password enabled edit mode & walked away). The timer part is simple. I haven't been able to determine how to reset the timer based on any activity.]]></description>
			<content:encoded><![CDATA[<div>Is there a way to determine if any keyboard or mouse activity has occurred in a predetermined time interval? I'm trying to find a way to automatically disable my programs edit mode if there has been no activity (i.e. person entered password enabled edit mode &amp; walked away). The timer part is simple. I haven't been able to determine how to reset the timer based on any activity.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>ksquared</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185245-How-to-detect-user-activity</guid>
		</item>
		<item>
			<title>Software edit file *.skin ?</title>
			<link>http://forums.devx.com/showthread.php?185233-Software-edit-file-*.skin&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 07:33:16 GMT</pubDate>
			<description><![CDATA[UI Design with skin form, software can edit the *.skin file ?

For example:
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=1&txtCodeId=74755
http://www.caulacbovb.com/mp_details.php?pid=104432]]></description>
			<content:encoded><![CDATA[<div>UI Design with skin form, software can edit the *.skin file ?<br />
<br />
For example:<br />
<a rel="nofollow" href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=1&amp;txtCodeId=74755" target="_blank">http://www.planet-source-code.com/vb...xtCodeId=74755</a><br />
<a rel="nofollow" href="http://www.caulacbovb.com/mp_details.php?pid=104432" target="_blank">http://www.caulacbovb.com/mp_details.php?pid=104432</a></div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>dong</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185233-Software-edit-file-*.skin</guid>
		</item>
		<item>
			<title>max value with inner join</title>
			<link>http://forums.devx.com/showthread.php?185231-max-value-with-inner-join&amp;goto=newpost</link>
			<pubDate>Fri, 26 Apr 2013 13:40:35 GMT</pubDate>
			<description><![CDATA[Hi, 

       I'm using Visual Studio 2010 and I'm trying to make a query that return tha maximum value of CodDekafix from the table Indice and get other  values from others 3 tables with the same value CodDekafix. The code is below:


 sql = "SELECT * FROM Indice " _
        & " WHERE CodDekafix=(Select max(CodDekafix) From Indice) " _
        & "INNER JOIN (((dekafix1 INNER JOIN dekafix2 ON dekafix1.CodDekafix = dekafix2.CodDekafix) " _
        & "INNER JOIN dekafix3 ON dekafix2.CodDekafix = dekafix3.CodDekafix) " _
        & "INNER JOIN dekafix1_2L ON dekafix3.CodDekafix = dekafix1_2L.CodDekafix) " _
        & "ON Indice.CodDekafix = dekafix1.CodDekafix ORDER BY Indice.CodDekafix"

       But the result is an error: Syntax error (missing operator) in query expression

      Any suggestion?

Thank you a lot,

Edson]]></description>
			<content:encoded><![CDATA[<div>Hi, <br />
<br />
       I'm using Visual Studio 2010 and I'm trying to make a query that return tha maximum value of CodDekafix from the table Indice and get other  values from others 3 tables with the same value CodDekafix. The code is below:<br />
<br />
<br />
 sql = &quot;SELECT * FROM Indice &quot; _<br />
        &amp; &quot; WHERE CodDekafix=(Select max(CodDekafix) From Indice) &quot; _<br />
        &amp; &quot;INNER JOIN (((dekafix1 INNER JOIN dekafix2 ON dekafix1.CodDekafix = dekafix2.CodDekafix) &quot; _<br />
        &amp; &quot;INNER JOIN dekafix3 ON dekafix2.CodDekafix = dekafix3.CodDekafix) &quot; _<br />
        &amp; &quot;INNER JOIN dekafix1_2L ON dekafix3.CodDekafix = dekafix1_2L.CodDekafix) &quot; _<br />
        &amp; &quot;ON Indice.CodDekafix = dekafix1.CodDekafix ORDER BY Indice.CodDekafix&quot;<br />
<br />
       But the result is an error: Syntax error (missing operator) in query expression<br />
<br />
      Any suggestion?<br />
<br />
Thank you a lot,<br />
<br />
Edson</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>Edson_Abreu</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185231-max-value-with-inner-join</guid>
		</item>
	</channel>
</rss>
