Entries Categorized as 'Programming'

Fame, Fortune and WCF

Date December 28, 2007

I need your help to bring me fame and fortune.
I wrote an article at code project which was entered for a competition.  The winner gets $10k.  Can you please check it out at http://www.codeproject.com/KB/WCF/myfeedreader.aspx and if you like it, please vote for it.  I can’t win if you don’t vote.  Voting will be closed on [...]

VB9 - LINQ and Extension Methods in Action

Date November 30, 2007

Here is the scenario, I have collection of books and I want to get a book with a specific ISBN.  In the old ways, you will probably have to create a custom collection and inherit a generic collection of books, then add a method to get by ISBN.
Thanks to LINQ and extension methods, you can [...]

Free Icons and Images

Date September 24, 2007

If you are creating any type of software applications with a user interface, most likely you will need to use icons.  Here is an excellent site to help you find icons for your web sites and applications.
Check http://www.iconfinder.net/

Related PostsFree image editing applicationHere is a great and free image editing software called Paint.NET. I am [...]

Calling the WordPress XMLRPC API from VB.net

Date July 31, 2007

As an example, I will call the getCategories API method.
Add a reference to the XML-RPC.net library.
Create a struct for the return result

Public Structure category
Public categoryId As Object
Public parentId As Object
Public description As Object
Public categoryName As Object
[...]

Getting Flash Video (FLV) to work in IIS

Date April 26, 2007

I added a macromedia flash animation (swf) to my asp.net website and it would work fine but when it came to display video it would stop. I figured it had to do with the video files i.e. the FLV file. It turns out that I had to add its MIME type to IIS

Right-click [...]