<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.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:wfw="http://wellformedweb.org/CommentAPI/" 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:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Funcoder Technology Blog - WinDev Consultant</title>
	
	<link>http://www.funcoder.com</link>
	<description>A UK Based WinDEV, WebDEV and WinDEV Mobile Consultant</description>
	<lastBuildDate>Mon, 17 Aug 2009 11:28:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<media:copyright>Copyright Jonathan Buckland 2005</media:copyright><media:thumbnail url="http://www.funcoder.com/images/fcp.jpg" /><media:keywords>geek,software,code,develop,microsoft,family,fun</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Software How-To</media:category><itunes:owner><itunes:email>funcoder@gmail.com</itunes:email><itunes:name>Jonathan Buckland</itunes:name></itunes:owner><itunes:author>Jonathan Buckland</itunes:author><itunes:explicit>no</itunes:explicit><itunes:image href="http://www.funcoder.com/images/fcp.jpg" /><itunes:keywords>geek,software,code,develop,microsoft,family,fun</itunes:keywords><itunes:subtitle>The Life and Times of a Geeky Programmer and his Family</itunes:subtitle><itunes:summary>The Life and Times of a Geeky Programmer and his Family</itunes:summary><itunes:category text="Technology"><itunes:category text="Software How-To" /></itunes:category><image><link>http://www.funcoder.com</link><url>http://www.funcoder.com/funcoder.jpg</url><title>Funcoder Podcast</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/funcoder" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>WinDev MVC</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/YwwXOKoxiMY/</link>
		<comments>http://www.funcoder.com/windev-mvc/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 11:26:22 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WinDev]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/08/17/windev-mvc/</guid>
		<description><![CDATA[Developing WinDev applications can be fun and challenging, but where there’s ease of use comes great responsibility.
You need to structure your code is such a way that it will be easily maintainable for yourself and other developers involved in the project.
So MVC comes to the rescue when you want to have a clean and tidy [...]]]></description>
			<content:encoded><![CDATA[<p>Developing WinDev applications can be fun and challenging, but where there’s ease of use comes great responsibility.</p>
<p>You need to structure your code is such a way that it will be easily maintainable for yourself and other developers involved in the project.</p>
<p>So MVC comes to the rescue when you want to have a clean and tidy source project. But I here you say, “WinDev doesn’t have an MVC framework”. Well I am going to show you how easy it is to structure your project in such a way that will make it MVC friendly.</p>
<p><em>What are we trying to achieve here?</em></p>
<p>To often we just add H commands to our form code just because it is easy to do. But the problem is this soon makes the application messy and you will find more cases of duplicating a process that was in another form.</p>
<p>I am going to show you a simple example of how I structure my projects in an MVC style.</p>
<p>Firstly I created 2 custom folders in Classes, one for Models which will interact with the database, and the other is Controllers which is the conduit between the window form code and the model.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb.png" width="185" height="149" /></a> </p>
<h3></h3>
<h3></h3>
<h2>Models</h2>
<p>In the screen shot above you can see I have created a UserModel. This class contains all the methods I need to access the database related to a user.</p>
<p>Within the model is a Structure object which represents the User table fields in the database.</p>
<p align="left"><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb1.png" width="232" height="182" /></a>&#160;</p>
<p>So here is an example of the GetUser method in the model which returns an object of type STUser.</p>
<p align="left"><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image2.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb2.png" width="300" height="189" /></a> </p>
<p>Now the windows code does not access the model, it’s the controller that uses the model to return the required data and other information needed by the window.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image3.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb3.png" width="371" height="146" /></a> </p>
<p>In the controller the code here calls the model and returns the data as a STUser object. Here you would code other functionality you needed to manipulate the data to show in the View (form/window).</p>
<p>If you are using WinDev 14 then you can use the STUser structure in a very simple way to update the form.</p>
<p>Firstly you would create an object used to hold the data returned from the controller.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image4.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb4.png" width="300" height="135" /></a> </p>
<p>In the example above I have created a global object which will now allow me to link the controls on the form to it, as you can see in the screen shot below.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image5.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb5.png" width="289" height="349" /></a> </p>
<p>Now I have linked the controls to the object I can get the user data in just a couple lines of code.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image6.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb6.png" width="253" height="105" /></a> </p>
<p>If you don’t have WinDev 14 then its a simple task of assigning the object field data to the controls instead, as shown in this screen shot.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/08/image7.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/08/image_thumb7.png" width="292" height="184" /></a> </p>
<p>So now you can see how using the MVC pattern in WinDev / WebDev can make your code clean and easy to maintain.</p>
<div class="wlWriterHeaderFooter" style="margin:0px; padding:0px 0px 0px 0px;">
<p><script type="text/javascript">
tweetmeme_source = 'funcoder';
</script><br />
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=YwwXOKoxiMY:93BK7fvVUv0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=YwwXOKoxiMY:93BK7fvVUv0:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=YwwXOKoxiMY:93BK7fvVUv0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/YwwXOKoxiMY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/windev-mvc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/windev-mvc/</feedburner:origLink></item>
		<item><title>Links for 2009-07-21 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/EIx9idNDJ0I/funcoder</link><pubDate>Wed, 22 Jul 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-07-21</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.kohanaphp.com/"&gt;Home &amp;ndash; Kohana: Swift, Secure, and Small PHP 5 Framework&lt;/a&gt;&lt;br/&gt;
Kohana is a PHP 5 framework that uses the Model View Controller architectural pattern. It aims to be secure, lightweight, and easy to use.&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/EIx9idNDJ0I" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-07-21</feedburner:origLink></item><item><title>Links for 2009-07-08 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/sEdBehrNewk/funcoder</link><pubDate>Thu, 09 Jul 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-07-08</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.screenjelly.com/"&gt;Screenjelly - Home&lt;/a&gt;&lt;br/&gt;
This service allows you to tweet screencasts.&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/sEdBehrNewk" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-07-08</feedburner:origLink></item><item><title>Links for 2009-07-03 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/9TGXASCJ0Wk/funcoder</link><pubDate>Sat, 04 Jul 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-07-03</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://video.google.com/videoplay?docid=6928758790059107004"&gt;How To Set Up A Membership Site Using Joomla&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/9TGXASCJ0Wk" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-07-03</feedburner:origLink></item><item>
		<title>PC Soft Release WinDev Updates</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/PKiuZw2uraM/</link>
		<comments>http://www.funcoder.com/pc-soft-release-windev-updates/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:16:10 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[WinDev]]></category>
		<category><![CDATA[PC Soft]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/29/pc-soft-release-windev-updates/</guid>
		<description><![CDATA[I’m a few days late on this so I would suspect most of you know about the latest updates which fix a number of bugs in version 12 and 14.
http://www.windev.com/ts/download/windev14/index.html
The WinDev 14 update fixes a number of bugs with the Windows Editor, Report Editor, Setup and Execution.
There was no WebDev 14 update but they did [...]]]></description>
			<content:encoded><![CDATA[<p>I’m a few days late on this so I would suspect most of you know about the latest updates which fix a number of bugs in version 12 and 14.</p>
<p><a title="http://www.windev.com/ts/download/windev14/index.html" href="http://www.windev.com/ts/download/windev14/index.html">http://www.windev.com/ts/download/windev14/index.html</a></p>
<p>The WinDev 14 update fixes a number of bugs with the Windows Editor, Report Editor, Setup and Execution.</p>
<p>There was no WebDev 14 update but they did release one for version 12 which fixed bugs with the Data Model Editor, Query Editor, Page Editor, Reports and Printouts, some install site changes, programming functions, PDF formatting in Linux and a fix to the HyperFileSQL HClose method in a thread.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=PKiuZw2uraM:21GNEx-6lAU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=PKiuZw2uraM:21GNEx-6lAU:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=PKiuZw2uraM:21GNEx-6lAU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/PKiuZw2uraM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/pc-soft-release-windev-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/pc-soft-release-windev-updates/</feedburner:origLink></item>
		<item>
		<title>PC Soft Release Community Site</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/0RlOoW1p8MU/</link>
		<comments>http://www.funcoder.com/pc-soft-release-community-blog/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:06:15 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WinDev]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[PC Soft]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/29/pc-soft-release-community-blog/</guid>
		<description><![CDATA[It’s a strange name but a great step in the direction for the community. If you have any handy API’s, libraries etc you can post them to the site so that others can make use of your fine work.
 
You need to create an account and then you can post a resource (blog post) to [...]]]></description>
			<content:encoded><![CDATA[<p>It’s a strange name but a great step in the direction for the community. If you have any handy API’s, libraries etc you can post them to the site so that others can make use of your fine work.</p>
<p><a href="http://repository.windev.com/"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image13.png" width="449" height="68" /></a> </p>
<p>You need to create an account and then you can post a resource (blog post) to the site.</p>
<p>We are really starting to see some momentum now at PC Soft so I am very excited about the new site and community spirit.</p>
<p><a title="http://repository.windev.com/" href="http://repository.windev.com/">http://repository.windev.com/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=0RlOoW1p8MU:LXTnlkM41qE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=0RlOoW1p8MU:LXTnlkM41qE:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=0RlOoW1p8MU:LXTnlkM41qE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/0RlOoW1p8MU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/pc-soft-release-community-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/pc-soft-release-community-blog/</feedburner:origLink></item>
		<item>
		<title>WinDev Fix for TX Text Control</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/tlSrDQlwg2I/</link>
		<comments>http://www.funcoder.com/windev-fix-for-tx-text-control/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 13:27:36 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WinDev]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/23/windev-fix-for-tx-text-control/</guid>
		<description><![CDATA[ If you are wanting to use the TX Text control with WinDev then the great news is that PC Soft have released an interim fix. This will be in a major release but you can get the fix now by contacting PC Soft.
I have made some tests with the fix and the component is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/tx-logo.gif"><img style="border-bottom: 0px; border-left: 0px; margin: 2px 10px 5px 0px; display: inline; border-top: 0px; border-right: 0px" title="tx_logo" border="0" alt="tx_logo" align="left" src="http://www.funcoder.com/wp-content/uploads/2009/06/tx-logo-thumb.gif" width="240" height="59" /></a> If you are wanting to use the TX Text control with WinDev then the great news is that PC Soft have released an interim fix. This will be in a major release but you can get the fix now by contacting PC Soft.</p>
<p>I have made some tests with the fix and the component is working smoothly now.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=tlSrDQlwg2I:KU7_zzv-bFw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=tlSrDQlwg2I:KU7_zzv-bFw:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=tlSrDQlwg2I:KU7_zzv-bFw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/tlSrDQlwg2I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/windev-fix-for-tx-text-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/windev-fix-for-tx-text-control/</feedburner:origLink></item>
		<item>
		<title>WebDev – Writing JavaScript in WebDev</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/D__Ssp5ca5w/</link>
		<comments>http://www.funcoder.com/webdev-writing-javascript-in-webdev/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:35:49 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/22/webdev-writing-javascript-in-webdev/</guid>
		<description><![CDATA[I see a lot of people trip up when they want to add some JavaScript to their browser code.
By default all browser methods are defined as WL as you can see from the screen shot below.
 
The letters WL and the green tell me this is a WL method, but if you click on the [...]]]></description>
			<content:encoded><![CDATA[<p>I see a lot of people trip up when they want to add some JavaScript to their browser code.</p>
<p>By default all browser methods are defined as WL as you can see from the screen shot below.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb9.png" width="385" height="37" /></a> </p>
<p>The letters WL and the green tell me this is a WL method, but if you click on the word <strong>WL</strong> then the method will change to JS. Now you can enter your JavaScript code.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb10.png" width="379" height="45" /></a> </p>
<p>The great thing is that the IDE supports JavaScript and will report any syntax errors.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=D__Ssp5ca5w:MhiXmWk_WxQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=D__Ssp5ca5w:MhiXmWk_WxQ:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=D__Ssp5ca5w:MhiXmWk_WxQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/D__Ssp5ca5w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/webdev-writing-javascript-in-webdev/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/webdev-writing-javascript-in-webdev/</feedburner:origLink></item>
		<item>
		<title>WebDev Tutorial – Call Server at Regular Intervals</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/mpWPwz6-VEc/</link>
		<comments>http://www.funcoder.com/webdev-tutorial-call-server-at-regular-intervals/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:36:08 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/22/webdev-tutorial-call-server-at-regular-intervals/</guid>
		<description><![CDATA[If you need to call a server process at regular intervals in your web page then this is actually a simple task that requires only a few lines of code and a little Ajax fun.
In this tutorial I will show you how to create a page to display the current system time. It will show [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to call a server process at regular intervals in your web page then this is actually a simple task that requires only a few lines of code and a little Ajax fun.</p>
<p>In this tutorial I will show you how to create a page to display the current system time. It will show you the principles of how to perform this operation so you can then use it in your own web apps.</p>
<p>I firstly created a Dynamic WebDev App and added a page. On the page I added a Cell component and inside a Static Control which will display the time.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb4.png" width="306" height="122" /></a> </p>
<p>We are not going to be using any JavaScript for this, just some simple WL. Firstly we need to add a Timer to the browser load event.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb5.png" width="361" height="79" /></a> </p>
<p>Now remember this code is executed in the browser and not on the server so make sure you choose the correct event.</p>
<p>The code will call a WL method called <strong>CheckTheTime</strong> every second. You need to create a <strong>New Local Browser Procedure</strong> which the timer will call.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb6.png" width="338" height="127" /></a> </p>
<p>This is one of many things I love about WebDev, making AJAX calls is such&#160; a breeze. So the code above will call a method on the server which will return the current system time as a string.</p>
<p>So now create a new Local Procedure (server side procedure) called <strong>GetTime</strong>. As you are making an AJAX call to this method you have to enable it to allow this type of action. Once again this is very simple, just click on the AJAX word at the top next to the method and the LED light will go green to show it has been enabled.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image8.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb7.png" width="336" height="22" /></a> </p>
<p>Then all you have to do is write the code which returns time time.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image9.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb8.png" width="331" height="142" /></a> </p>
<p>That’s it, you are done. Running the page will now display the current time and will automatically refresh every second.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=mpWPwz6-VEc:tQ0cCMFcDCs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=mpWPwz6-VEc:tQ0cCMFcDCs:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=mpWPwz6-VEc:tQ0cCMFcDCs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/mpWPwz6-VEc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/webdev-tutorial-call-server-at-regular-intervals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/webdev-tutorial-call-server-at-regular-intervals/</feedburner:origLink></item>
		<item><title>Links for 2009-06-20 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/LEdqpRlBv4M/funcoder</link><pubDate>Sun, 21 Jun 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-06-20</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://youlove.us/blog/the-youloveus-scrolling-background-effect-expained"&gt;The youlove.us scrolling background effect expained | youlove.us&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.koders.com/"&gt;Open Source Code Search Engine - Koders&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://pictaculous.com/"&gt;Pictaculous - A Color Palette Generator (courtesy of MailChimp)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/LEdqpRlBv4M" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-06-20</feedburner:origLink></item><item>
		<title>Using TX Text Control in WinDev</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/a-fn1btV0zI/</link>
		<comments>http://www.funcoder.com/using-tx-text-control-in-windev/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 11:20:39 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WinDev]]></category>
		<category><![CDATA[PC Soft]]></category>
		<category><![CDATA[tx text]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/15/using-tx-text-control-in-windev/</guid>
		<description><![CDATA[The current releases of WinDev has a bug when you want to use the TX Text ActiveX control on a WinDev form.
There is a work around by adding the following code to the initialisation method of the ActiveX component.
 
A fix for this will be in the next release but at leased you can easily [...]]]></description>
			<content:encoded><![CDATA[<p>The current releases of WinDev has a bug when you want to use the TX Text ActiveX control on a WinDev form.</p>
<p>There is a work around by adding the following code to the initialisation method of the ActiveX component.</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb3.png" width="368" height="181" /></a> </p>
<p>A fix for this will be in the next release but at leased you can easily work around the problem.</p>
<p>Thanks PC Soft Support for this…</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=a-fn1btV0zI:pqAugC4Inzo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=a-fn1btV0zI:pqAugC4Inzo:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=a-fn1btV0zI:pqAugC4Inzo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/a-fn1btV0zI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/using-tx-text-control-in-windev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/using-tx-text-control-in-windev/</feedburner:origLink></item>
		<item>
		<title>WinDev 14 – Project Explorer Tip</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/S4Ozau4DfP4/</link>
		<comments>http://www.funcoder.com/windev-14-project-explorer-tip/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 13:56:55 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WinDev]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/11/windev-14-project-explorer-tip/</guid>
		<description><![CDATA[If you open a window, class, etc using the Ctr-E Fast Selection window
 
then your window will be out of sync with the Project explorer. You don’t need to go finding the window you are working on manually, just select the synchronise element button &#160; in project explorer.
]]></description>
			<content:encoded><![CDATA[<p>If you open a window, class, etc using the Ctr-E Fast Selection window</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image3.png" width="313" height="257" /> </p>
<p>then your window will be out of sync with the Project explorer. You don’t need to go finding the window you are working on manually, just select the synchronise element button <a href="http://www.funcoder.com/wp-content/uploads/2009/06/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.funcoder.com/wp-content/uploads/2009/06/image-thumb2.png" width="53" height="59" /></a>&#160; in project explorer.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=S4Ozau4DfP4:sRT_vbjEUQg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=S4Ozau4DfP4:sRT_vbjEUQg:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=S4Ozau4DfP4:sRT_vbjEUQg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/S4Ozau4DfP4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/windev-14-project-explorer-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/windev-14-project-explorer-tip/</feedburner:origLink></item>
		<item>
		<title>Are PC Soft Really Committed to the WinDev English Version?</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/KUYb-7DT_4E/</link>
		<comments>http://www.funcoder.com/are-pc-soft-really-committed-to-the-english-version/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 16:38:01 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[WinDev]]></category>
		<category><![CDATA[PC Soft]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/09/are-pc-soft-really-committed-to-the-english-version/</guid>
		<description><![CDATA[UPDATE!!
This afternoon I received a telephone call from Claudia at PC Soft. She discussed my comments in this blog post and explained about some of the benefits we have received from a later version which included more examples translated to English.
I reiterated about the number of bugs we are getting with this new version and [...]]]></description>
			<content:encoded><![CDATA[<h3><font color="#800000">UPDATE!!</font></h3>
<p><em><font size="3">This afternoon I received a telephone call from Claudia at PC Soft. She discussed my comments in this blog post and explained about some of the benefits we have received from a later version which included more examples translated to English.</font></em></p>
<p><em><font size="3">I reiterated about the number of bugs we are getting with this new version and Claudia has asked for you to please send bug reports to PC Soft so that they can investigate them.</font></em></p>
<p><em><font size="3">She also wants to hear from you if you are having any issues with PC Soft or concerns about bugs not being resolved. Please contact Claudia at </font></em><a href="mailto:claudia.rivera@pcsoft.fr"><em><font size="3">claudia.rivera@pcsoft.fr</font></em></a><em><font size="3"> and help her to understand any issues you have.</font></em></p>
<p>&#160;</p>
<p>I discussed about the bugs that developers are complaining about in the latest version</p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/powered-by-windev.gif"><img style="border-right-width: 0px; margin: 2px 10px 5px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Powered_By_WinDev" border="0" alt="Powered_By_WinDev" align="left" src="http://www.funcoder.com/wp-content/uploads/2009/06/powered-by-windev-thumb.gif" width="112" height="40" /></a> I have been developing applications and websites in WinDev / WebDev for the past 2 years. So why this question now?</p>
<p>Well we have seen the release of Version 14 at the beginning of this month, 6 months after the French release. Come on now PC Soft, 6 months is a lifetime in the technology industry. If they were really committed to expanding then you would see the English version created in parallel to the French.</p>
<p>If you look at other development tools, many produce multi-lingual versions and release them at the same time.</p>
<p>Maybe its a problem with their codebase which makes it complicated to created multi-lingual versions, but surely they would be working towards resolving this.</p>
<p>The other issue is the lack of communication between the community and PC Soft. The <a href="http://www.windev.com">www.windev.com</a> website it pretty much stagnant with no focus on providing information about news, tips etc.</p>
<p>What about LST? Why do they not produce an English version? </p>
<p><a href="http://www.funcoder.com/wp-content/uploads/2009/06/windevlookediteur.jpg"><img style="border-right-width: 0px; margin: 2px 0px 5px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="WINDEV-Look-Editeur" border="0" alt="WINDEV-Look-Editeur" align="right" src="http://www.funcoder.com/wp-content/uploads/2009/06/windevlookediteur-thumb.jpg" width="244" height="182" /></a> Don’t get me wrong, I love programming in WinDev but I feel it is a very lonely experience. I am also finding it harder to convince clients their are other developers that can support the systems I write. I know there are some but we are talking so much less than there should be.</p>
<p>WinDev 14 has made me re-think about this product, not only for the 6 months wait but then the quality. Every day I come across a bug which is driving me nuts.</p>
<p>The new version has all these new information messages to help you build quality code, but it generates these errors even on PC Soft’s own RAD classes.</p>
<p>I don’t want to move back to .NET but its looking more that I will have to. It’s sad as I have already started writing a WinDev book but what should I do?</p>
<p>I think now it the time for the powers at PC Soft to speak up and be more open about their future plans.</p>
<p> We’ll there’s my rant and you are welcome to disagree. Leave a comment and maybe we can make PC Soft aware of our feelings and hope they will become more involved in the community.   </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=KUYb-7DT_4E:ThLmw6QI6e8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=KUYb-7DT_4E:ThLmw6QI6e8:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=KUYb-7DT_4E:ThLmw6QI6e8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/KUYb-7DT_4E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/are-pc-soft-really-committed-to-the-english-version/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/are-pc-soft-really-committed-to-the-english-version/</feedburner:origLink></item>
		<item>
		<title>The Future Xbox 360</title>
		<link>http://feedproxy.google.com/~r/funcoder/~3/qU6p4ZvO5fA/</link>
		<comments>http://www.funcoder.com/the-future-xbox-360/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 13:42:38 +0000</pubDate>
		<dc:creator>funcoder@gmail.com (Jonathan Buckland)</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.funcoder.com/2009/06/03/the-future-xbox-360/</guid>
		<description><![CDATA[Microsoft shows us Project Natal which is not just for video games but a user interface for the family.




]]></description>
			<content:encoded><![CDATA[<p>Microsoft shows us Project Natal which is not just for video games but a user interface for the family.</p>
<p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:66bd48e6-2de0-4f11-b0ba-ce24b1ed8a86" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/oACt9R9z37U&amp;hl=en"></param><embed src="http://www.youtube.com/v/oACt9R9z37U&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/funcoder?a=qU6p4ZvO5fA:TZmrdVTifbI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=qU6p4ZvO5fA:TZmrdVTifbI:63t7Ie-LG7Y"><img src="http://feeds.feedburner.com/~ff/funcoder?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/funcoder?a=qU6p4ZvO5fA:TZmrdVTifbI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/funcoder?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/funcoder/~4/qU6p4ZvO5fA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.funcoder.com/the-future-xbox-360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<media:content url="http://feedproxy.google.com/~r/funcoder/~5/FF-iaHjwQLU/oACt9R9z37U&amp;amp;hl=en" fileSize="1020" type="application/x-shockwave-flash" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>Microsoft shows us Project Natal which is not just for video games but a user interface for the family. </itunes:subtitle><itunes:author>Jonathan Buckland</itunes:author><itunes:summary>Microsoft shows us Project Natal which is not just for video games but a user interface for the family. </itunes:summary><itunes:keywords>geek,software,code,develop,microsoft,family,fun</itunes:keywords><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><feedburner:origLink>http://www.funcoder.com/the-future-xbox-360/</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/funcoder/~5/FF-iaHjwQLU/oACt9R9z37U&amp;amp;hl=en" length="1020" type="application/x-shockwave-flash" /><feedburner:origEnclosureLink>http://www.youtube.com/v/oACt9R9z37U&amp;amp;hl=en</feedburner:origEnclosureLink></item>
	<copyright>Copyright Jonathan Buckland 2005</copyright><media:credit role="author">Jonathan Buckland</media:credit><media:rating>nonadult</media:rating><item><title>Links for 2009-05-13 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/2du2dygU-sk/funcoder</link><pubDate>Thu, 14 May 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-05-13</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.intuitivesoul.com/"&gt;Intuitive Soul: Building Bridges to a Higher Consciousness.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/2du2dygU-sk" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-05-13</feedburner:origLink></item><item><title>Links for 2009-05-08 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/Y8Lw9NuJVxs/funcoder</link><pubDate>Sat, 09 May 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-05-08</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.zapsolution.com/"&gt;ZAP Solution, Multimedia player, slide show, archiving and imaging softwares, programming add-on libraries&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://saltcube.com/?hop=mindmedia"&gt;Lucid Dream Forum, OBE Forum - Saltcube.com - Saltcube Lucid Dream And OBE Forum&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/Y8Lw9NuJVxs" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-05-08</feedburner:origLink></item><item><title>Links for 2009-05-07 [del.icio.us]</title><link>http://feedproxy.google.com/~r/funcoder/~3/rWBOu-SlONM/funcoder</link><pubDate>Fri, 08 May 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/funcoder#2009-05-07</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.dailymotion.com/gb/video/x93zji_the-hunt-for-gollum-hd-version_shortfilms"&gt;Dailymotion - The Hunt For Gollum (HD version) - a Film &amp;amp; TV video&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/funcoder/~4/rWBOu-SlONM" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/funcoder#2009-05-07</feedburner:origLink></item></channel>
</rss>
