<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	>

<channel>
	<title>Seppy Bloom</title>
	<atom:link href="http://blogs.embarcadero.com/seppybloom/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.embarcadero.com/seppybloom</link>
	<description></description>
	<pubDate>Mon, 17 Aug 2009 21:01:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en-US</language>
			<item>
		<title>RAD Studio 2010 - Touch &#38; Gestures Part 2</title>
		<link>http://blogs.embarcadero.com/seppybloom/2009/08/17/37607</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2009/08/17/37607#comments</comments>
		<pubDate>Mon, 17 Aug 2009 21:01:07 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[C++Builder]]></category>

		<category><![CDATA[Delphi]]></category>

		<category><![CDATA[RAD Studio]]></category>

		<category><![CDATA[VCL]]></category>

		<category><![CDATA[ednfront]]></category>

		<category><![CDATA[Gestures]]></category>

		<category><![CDATA[RAD Studio 2010]]></category>

		<category><![CDATA[Touch]]></category>

		<guid isPermaLink="false">http://blogs.embarcadero.com/seppybloom/?p=37607</guid>
		<description><![CDATA[One of theÂ integrated touch features ofÂ the VCL in RAD Studio 2010 is interactive multi-touch gestures. We call them InteractiveGestures because they fire the OnGesture event continuosly as the gesture is performed, allowing UI to be updated to reflect zooming, panning and rotation. InteractiveGestures are accessed from the new Touch property, as seen below:
Â 
Â 
There are 5 [...]]]></description>
			<content:encoded><![CDATA[<p>One of theÂ integrated touch features ofÂ the VCL in <a href="http://www.embarcadero.com/rad-studio-2010/">RAD Studio 2010</a> is interactive multi-touch gestures. We call them InteractiveGestures because they fire the OnGesture event continuosly as the gesture is performed, allowing UI to be updated to reflect zooming, panning and rotation. InteractiveGestures are accessed from the new Touch property, as seen below:</p>
<p>Â <a href="/files/2009/08/interactivegestures01_1675.png"><img src="/files/2009/08/interactivegestures01_1675.png" alt="" width="332" height="481" /></a></p>
<p>Â </p>
<p>There are 5 InteractiveGestures: zoom, pan, rotate, two finger tap and press and tap. Responding to an InteractiveGesture is as simple as adding an event handler for the OnGesture event.</p>
<p>Â Â Â <a href="/files/2009/08/interactivegestures02_1836.png"><img src="/files/2009/08/interactivegestures02_1836.png" alt="" width="500" height="89" /></a><a href="/files/2009/08/interactivegestures02_1836.png"></a><a href="/files/2009/08/interactivegestures02_1669.png"></a></p>
<p>Â </p>
<p>The event handler is passed a TGestureEventInfo record which contains information about the gesture, such as location (point), angle, distance (between points)Â and inertia vector.Â When the option igoPanInertia is selected, OnGesture is called repeatedly with synthesized locations that gradually get closer together to simluate gravity when you let go.</p>
<p>Here&#8217;s an example of how to implement panningÂ for a custom control:</p>
<p><a href="/files/2009/08/interactivegestures03_1839.png"><img src="/files/2009/08/interactivegestures03_1839.png" alt="" width="500" height="290" /></a><a href="/files/2009/08/touch06_1833.png"></a></p>
<p>Â </p>
<p>By default VCLÂ handles multi-touch panning in scrollable controls, including forms. The code snippet above isÂ taken from TScrollingWinControl, and any descendant controls will automatically respond to panning when the AutoScroll property is True.</p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=37607&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_37607" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=RAD%20Studio%202010%20-%20Touch%20%26amp%3B%20Gestures%20Part%202&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2009%2F08%2F17%2F37607" id="akst_email_37607" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2009/08/17/37607/feed</wfw:commentRss>
		</item>
		<item>
		<title>RAD Studio 2010 - Touch &#38; Gestures Part 1</title>
		<link>http://blogs.embarcadero.com/seppybloom/2009/08/11/37624</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2009/08/11/37624#comments</comments>
		<pubDate>Tue, 11 Aug 2009 08:01:40 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[C++Builder]]></category>

		<category><![CDATA[Delphi]]></category>

		<category><![CDATA[RAD Studio]]></category>

		<category><![CDATA[VCL]]></category>

		<category><![CDATA[ednfront]]></category>

		<category><![CDATA[Gestures]]></category>

		<category><![CDATA[RAD Studio 2010]]></category>

		<category><![CDATA[Touch]]></category>

		<guid isPermaLink="false">http://blogs.embarcadero.com/seppybloom/?p=37624</guid>
		<description><![CDATA[Finally!Â RAD Studio 2010 is just around the corner which means we can talk about all that new awesome "stuff" we&#8217;ve been working on. Chris Bensen and I have spent a lot of our time working on building a gesturing framework and integrating touch into the VCL. Here&#8217;s a sneak peek of what&#8217;s coming:
Â 
Most controls now [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">Finally!Â <a href="http://www.embarcadero.com/rad-studio-2010/">RAD Studio 2010</a> is just around the corner which means we can talk about all that new awesome "stuff" we&#8217;ve been working on. <a href="http://chrisbensen.blogspot.com/">Chris Bensen</a> and I have spent a lot of our time working on building a gesturing framework and integrating touch into the VCL. Here&#8217;s a sneak peek of what&#8217;s coming:</p>
<p style="text-align: left">Â <a href="/files/2009/08/touch01_1747.png"><img src="/files/2009/08/touch01_1747.png" alt="" width="364" height="432" /></a></p>
<p style="text-align: left">Most controls now have aÂ Touch property, which hosts everything related to gesturing and touch.</p>
<p style="text-align: left">Â </p>
<p style="text-align: left"><a href="/files/2009/08/touch02_1750.png"><img src="/files/2009/08/touch02_1750.png" alt="" width="261" height="413" /></a></p>
<p style="text-align: left">The platform independant gesturing frameworkÂ uses a mouse, pen or (single) touch and contains over 30 standard gestures (such as Left, Right, Up andÂ Down). You can also record your own custom gestures using the Custom Gesture Designer.</p>
<p style="text-align: left">Â </p>
<p style="text-align: left"><a href="/files/2009/08/touch03_1753.png"><img src="/files/2009/08/touch03_1753.png" alt="" width="347" height="103" /></a></p>
<p style="text-align: left">There are 5 interactive multi-touch gestures (such as zoom, rotate and pan). Just like standard and custom gestures, interactive gestures are handled in the new OnGesture event.</p>
<p style="text-align: left">Â </p>
<p style="text-align: left"><a href="/files/2009/08/touch04_1756.png"><img src="/files/2009/08/touch04_1756.png" alt="" width="362" height="342" /></a></p>
<p style="text-align: left">The VCL includes dedicated gesturing components to integrate gesture recording and management into Delphi applications.Â These are the same components we&#8217;ve used in the designers.</p>
<p style="text-align: left">Â </p>
<p style="text-align: left"><a href="/files/2009/08/touch05_1759.png"><img src="/files/2009/08/touch05_1759.png" alt="" width="500" height="364" /></a></p>
<p style="text-align: left">The VCL also includesÂ the super-cool touch keyboard control, allowing Delphi applications to be truly touch enabled and free from physical keyboards.</p>
<p style="text-align: left">Â </p>
<p style="text-align: left">To be continued&#8230;</p>
<p style="text-align: left">Â </p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=37624&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_37624" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=RAD%20Studio%202010%20-%20Touch%20%26amp%3B%20Gestures%20Part%201&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2009%2F08%2F11%2F37624" id="akst_email_37624" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2009/08/11/37624/feed</wfw:commentRss>
		</item>
		<item>
		<title>TiburÃ³n Preview: TButtonedEdit</title>
		<link>http://blogs.embarcadero.com/seppybloom/2008/07/18/37605</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2008/07/18/37605#comments</comments>
		<pubDate>Fri, 18 Jul 2008 20:44:30 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.codegear.com/seppybloom/2008/07/18/37605</guid>
		<description><![CDATA[
As I mentioned earlier I&#8217;ll be posting a series of previews of new VCL features. First up is the all new TButtonedEdit component:Â Â  
Â Â 

Â Â Â Â Â  
Â Â Â Â 
Derived from TEdit, it provides embedded buttons that can optionally drop down a popupmenu (as seen above). We&#8217;ve used this new component in the TiburÃ³n IDE, one example is shownÂ hereÂ in a [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"></span><span style="font-family: Arial"><font face="Verdana"></p>
<p align="left">As I mentioned earlier I&#8217;ll be posting a series of previews of new VCL features. First up is the all new TButtonedEdit component:<span style="font-family: Arial"><font face="Verdana">Â Â </font></span><span style="font-family: Arial"><font face="Verdana"> </font></span></p>
<p align="left"><span style="font-family: Arial"><font face="Verdana">Â Â </font></span></p>
<p align="left"><span style="font-family: Arial"></span></p>
<p><span style="font-family: Arial"></span><span style="font-family: Arial"><font face="Verdana"><img src="http://blogs.codegear.com/files/2008/07/buttonededit1_696.png" alt="TButtonedEdit preview" /></font></span><span style="font-family: Arial"><font face="Verdana">Â Â </font></span><span style="font-family: Arial"><font face="Verdana">Â Â Â </font></span><span style="font-family: Arial"><font face="Verdana"> </font></span></p>
<p><span style="font-family: Arial"><font face="Verdana">Â Â Â Â </font></span></p>
<p><span style="font-family: Arial"></span><span style="font-family: Arial"><font face="Verdana">Derived from TEdit, it provides embedded buttons that can optionally drop down a popupmenu (as seen above). We&#8217;ve used this new component in the TiburÃ³n IDE, one example is shownÂ <a href="http://chrisbensen.blogspot.com/2008/07/tiburn-sneak-peek-tool-palette.html">here</a>Â in a post by Chris Bensen.</font></span></p>
<p><span style="font-family: Arial">Â </span><span style="font-family: Arial"><font face="Verdana">Â </font></span><span style="font-family: Arial"><font face="Verdana">Â Â </font></span></p>
<p><span style="font-family: Arial"></span><span style="font-family: Arial"></span></p>
<p></font></span></p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=37605&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_37605" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=Tibur%C3%B3n%20Preview%3A%20TButtonedEdit&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2008%2F07%2F18%2F37605" id="akst_email_37605" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2008/07/18/37605/feed</wfw:commentRss>
		</item>
		<item>
		<title>TiburÃ³n Preview</title>
		<link>http://blogs.embarcadero.com/seppybloom/2008/07/18/37603</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2008/07/18/37603#comments</comments>
		<pubDate>Fri, 18 Jul 2008 19:58:44 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.codegear.com/seppybloom/2008/07/18/37603</guid>
		<description><![CDATA[It&#8217;s been awhile, more than awhile actually, but with TiburÃ³n on the horizon, now&#8217;s a great time to get some posts going! As I&#8217;m sure you know, TiburÃ³n is all about Unicode support, but that&#8217;s not all that&#8217;sÂ new in the VCL. I&#8217;ll start posting some sneak peaks of the new VCL features shortly.
In the mean [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awhile, more than awhile actually, but with TiburÃ³n on the horizon, now&#8217;s a great time to get some posts going! As I&#8217;m sure you know, TiburÃ³n is all about Unicode support, but that&#8217;s not all that&#8217;sÂ new in the VCL. I&#8217;ll start posting some sneak peaks of the new VCL features shortly.</p>
<p>In the mean time be sure to check out these TiburÃ³n posts by fellow CodeGear bloggers:</p>
<p><a href="http://blogs.codegear.com/abauer/2008/07/16/38864">TiburÃ³n - String Theory</a>Â<br />
<a href="http://blogs.codegear.com/nickhodges/2008/07/15/39066">Here Comes Tiburon</a><br />
<a href="http://blogs.codegear.com/nickhodges/2008/07/17/39073">Donâ€™t Get Caught with Boxes</a><br />
<a href="http://blogs.codegear.com/davidi/2008/07/15/38898">Tiburonâ€™s LoadFromFile and SaveToFile for Unicode characters</a></p>
<p>Â  Â</p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=37603&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_37603" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=Tibur%C3%B3n%20Preview&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2008%2F07%2F18%2F37603" id="akst_email_37603" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2008/07/18/37603/feed</wfw:commentRss>
		</item>
		<item>
		<title>What not not to do</title>
		<link>http://blogs.embarcadero.com/seppybloom/2007/07/19/37602</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2007/07/19/37602#comments</comments>
		<pubDate>Thu, 19 Jul 2007 15:31:07 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.codegear.com/seppybloom/2007/07/19/33421/</guid>
		<description><![CDATA[After reading Chris Bensen&#8217;s recent post about naming variables, I came across the following that made me smile: &#160; FIsNotXP := not CheckWin32Version(5, 1); Later on FIsNotXP is used&#160;like this: &#160; if (not FIsNotXP) and FInAnimation then&#160;
]]></description>
			<content:encoded><![CDATA[<p><P align="justify"><FONT face="Verdana">After reading <A href="http://chrisbensen.blogspot.com/">Chris Bensen&#8217;s</A> recent post about <A href="http://chrisbensen.blogspot.com/2007/07/variable-names-to-avoid.html">naming variables</A>, I came across the following that made me smile:</FONT></P> <P><FONT face="Courier New">&nbsp; FIsNotXP := not CheckWin32Version(5, 1);</FONT></P> <P><FONT face="Verdana">Later on <FONT face="Courier New">FIsNotXP</FONT> is used&nbsp;like this:</FONT></P> <P><FONT face="Verdana"><FONT face="Courier New">&nbsp; if (not FIsNotXP) and FInAnimation then</FONT><BR>&nbsp;<BR></FONT></P></p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=37602&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_37602" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=What%20not%20not%20to%20do&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2007%2F07%2F19%2F37602" id="akst_email_37602" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2007/07/19/37602/feed</wfw:commentRss>
		</item>
		<item>
		<title>Three simple steps to Vista enable your VCL application</title>
		<link>http://blogs.embarcadero.com/seppybloom/2007/03/22/33420</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2007/03/22/33420#comments</comments>
		<pubDate>Thu, 22 Mar 2007 11:30:36 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.codegear.com/seppybloom/2007/03/22/33339/</guid>
		<description><![CDATA[One of many new features in Delphi 2007 for Win32 is improved Vista support in VCL. New applications get these improvements by default, but what about existing applications? There are three easy steps you can take to make your application more Vista-like:   Theme your applicationThis will change the appearance of most controls, rendering [...]]]></description>
			<content:encoded><![CDATA[<p><P align="justify"><FONT face="Verdana">One of many new features in </FONT><A href="http://www.codegear.com/Products/Delphi/Delphi2007forWin32/tabid/236/Default.aspx"><FONT face="Verdana">Delphi 2007 for Win32</FONT></A><FONT face="Verdana"> is improved Vista support in VCL. New applications get these improvements by default, but what about existing applications? There are three easy steps you can take to make your application more Vista-like:</FONT></P> <OL> <LI> <DIV align="justify"><FONT face="Verdana"><STRONG>Theme your application</STRONG><BR>This will change the appearance of most controls, rendering them using the currently selected Windows theme. From the Project menu, select Options, navigate to the Application page and check "Enable runtime themes". <BR><BR></FONT></DIV> <LI> <DIV align="justify"><FONT face="Verdana"><STRONG>Use the MainFormOnTaskbar property</STRONG><BR>When running under Vista&#8217;s Aero theme you need to display the application&#8217;s main form on the taskbar rather than the application window. This is required to correctly handle taskbar thumnbails, Flip3D and transition effects when minimizing the application. To control this behaviour, a new property has been added to TApplication. From the Project menu, select View Source. Locate the line "Application.Initialize;" and add the following on the next line: "Application.MainFormOnTaskbar := True;"<BR><BR></FONT></DIV> <LI> <DIV align="justify"><FONT face="Verdana"><STRONG>Compile and run</STRONG><BR>The best part is that none of these changes are Vista specific and your application will run just fine on all Windows platforms.<BR></FONT></DIV></LI></OL></p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=33420&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_33420" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=Three%20simple%20steps%20to%20Vista%20enable%20your%20VCL%20application&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2007%2F03%2F22%2F33420" id="akst_email_33420" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2007/03/22/33420/feed</wfw:commentRss>
		</item>
		<item>
		<title>Four Minutes and Twenty Seconds (or how Mr. Murphy hijacked my presentation)</title>
		<link>http://blogs.embarcadero.com/seppybloom/2007/03/20/33338</link>
		<comments>http://blogs.embarcadero.com/seppybloom/2007/03/20/33338#comments</comments>
		<pubDate>Tue, 20 Mar 2007 14:39:30 +0000</pubDate>
		<dc:creator>Seppy Bloom</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.codegear.com/seppybloom/2007/03/20/1/</guid>
		<description><![CDATA[It&#8217;s taken a while, a long time in fact, but I&#8217;m finally ready to join the party, the blogging party that is. With the release of Delphi 2007 for Win32, I can&#8217;t think of a better time to get this blog started. I work on the Delphi/BDS products, primarily on the VCL framework. Those who&#160;tried [...]]]></description>
			<content:encoded><![CDATA[<p><P align="justify"><SPAN style="FONT-FAMILY: Arial"><FONT face="Verdana">It&#8217;s taken a while, a long time in fact, but I&#8217;m finally ready to join the party, the blogging party that is. With the release of </FONT><A href="http://www.codegear.com/Products/Delphi/Delphi2007forWin32/tabid/236/Default.aspx"><FONT face="Verdana">Delphi 2007 for Win32</FONT></A><FONT face="Verdana">, I can&#8217;t think of a better time to get this blog started.</FONT></SPAN></P> <P align="justify"><SPAN style="FONT-FAMILY: Arial"><FONT face="Verdana">I work on the Delphi/BDS products, primarily on the VCL framework. Those who&nbsp;tried to watch&nbsp;my </FONT><A href="http://conferences.codegear.com/coderage07"><FONT face="Verdana">CodeRage</FONT></A><FONT face="Verdana">&nbsp;presentation last week know that all too well.&nbsp;The pre-recorded presentation restarted after 4 minutes 20 seconds, then again after another 4:20, and so on until the presentation&nbsp;could be re-mastered. Just enough time for introductions and a teaser about what was to come. I guess it would be foolish to think </FONT><A href="http://en.wikipedia.org/wiki/Murphy%27s_law"><FONT face="Verdana">Mr. Murphy</FONT></A><FONT face="Verdana"> would pass up an opportunity to participate in an event like&nbsp;</FONT><A href="http://conferences.codegear.com/coderage07"><FONT face="Verdana">CodeRage</FONT></A><FONT face="Verdana">. For those who were unable to stick around to the end, or experienced any of the other reported technical&nbsp;issues (once again our sincerest apologies for the mishaps), a replay of the session is available for download </FONT><A href="http://torrent.codegear.com/coderage/Day%201%20Monday/"><FONT face="Verdana">here</FONT></A><FONT face="Verdana">.</FONT></SPAN></P> <P align="justify"><SPAN style="FONT-FAMILY: Arial"><FONT face="Verdana">Stay tuned as I&#8217;ll be blogging about some of the new VCL features in </FONT><A href="http://www.codegear.com/Products/Delphi/Delphi2007forWin32/tabid/236/Default.aspx"><FONT face="Verdana">Delphi 2007 for Win32</FONT></A><FONT face="Verdana">&nbsp;in the very near future&#8230;<BR></P></FONT></SPAN></p>
<p class="akst_link"><a href="http://blogs.embarcadero.com/seppybloom/?p=33338&amp;akst_action=share-this"  title="Post to del.icio.us, etc." id="akst_link_33338" class="akst_share_link" rel="nofollow">Share This</a> | <a href="mailto:?subject=Four%20Minutes%20and%20Twenty%20Seconds%20%28or%20how%20Mr.%20Murphy%20hijacked%20my%20presentation%29&body=Have you seen this? http%3A%2F%2Fblogs.embarcadero.com%2Fseppybloom%2F2007%2F03%2F20%2F33338" id="akst_email_33338" class="akst_share_email" rel="nofollow">Email this page to a friend</a></p>]]></content:encoded>
			<wfw:commentRss>http://blogs.embarcadero.com/seppybloom/2007/03/20/33338/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

