Powered by discountASP.NET
referal ID: sdtref
Why recommend discountASP.NET?
$720 in referrals so far!

About/Contact

Steve Trefethen

Steve Trefethen is a Software Architect and Director of Software Training at Falafel Software in Capitola, CA. You can reach Steve here.

All opinions you read here are Steve's own and are not necessarily those of Falafel Software.

Calendar

<<  September 2010  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

View posts in large calendar

Disclaimer

The posts on this weblog are provided AS IS with no warranties, and confer no rights. The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
If you're new here, you may want to subscribe to my RSS feed, follow me on Twitter, or subscribe via email. Thanks for visiting!

Aggregated CodeGear news feed using Yahoo Pipes

February 10 2007 8:07PM
Using Yahoo Pipes I've created a news feed for CodeGear drawing items from Google, Technorati and Bloglines. Here is the feed URL which if you click will take you to a Yahoo page that will provide you more options to subscribe and/or edit this feed for your own use using Pipes. If you're into RSS/Atom I'd highly recommend checking out Pipes as it's a major milestone in aggregation. Btw, you might be interested in to my link blog where I'd linked to Yahoo Pipes the other day.
FacebookDel.icio.usDigg It!

Tags: ,

AJAX/RSS examples uploaded to code central

November 01 2006 8:14PM
I'm not sure why I hadn't done this before but I just uploaded the two Delphi for .NET AJAX examples and my recent Windows RSS Platform example to CodeCentral. You can find links for all of these downloads on my author page. The examples include:

Updated Jan 19, 2007: Fix URLs

FacebookDel.icio.usDigg It!

Tags: , , ,

Using Microsoft's Windows RSS Platform from IE7 in Delphi (Win32)

November 01 2006 8:29AM

Recently, Microsoft introduced the Windows RSS Platform which allows you to programmatically manipulate RSS feeds for use in your own applications. I'm a big fan of RSS and thus this new platform interested me. Thankfully a Microsoft blogger named Walter vonKoch was kind enough to post the RSS Platform MiniSDK including the type library msfeeds.tlb that we can easily import into Delphi. Big thanks to Walter for posting this!

In the interest of completeness I used the tlibimp utility that ships with BDS to import the type library using the following command line:

tlibimp -Hr- -Hs- -Fe- msfeeds.tlb

Here is a Delphi Win32 project I wrote which is likely the quickest/dirtiest RSS reader you may ever run into but it illustrates my point which is to use the new Microsoft Windows RSS Platform from Delphi nicely. Disclaimer: I quickly hacked together this application with the sole interest of using as little of my time as possible leaving the details as an exercise for the reader. A few important points:

  • The imported type library unit is included in the download
  • The unit was imported using the tlibimp from Highlander so please let me know if you run into any issues compiling it with earlier versions of BDS
  • To run this demo you must have IE7 installed

Lastly, should you write something really cool using this platform please let me know I'd love to hear about it.

Reference:
FacebookDel.icio.usDigg It!

Tags: , ,