Click here to Skip to main content
15,891,375 members
Articles / Programming Languages / C#
Article

CPBar for latest article briefs (RSS feed)

Rate me:
Please Sign up or sign in to vote.
3.08/5 (9 votes)
6 Jul 20032 min read 90K   1.9K   35   21
This article is about creating a vertical explorer bar which displays CodeProject's latest article briefs from its RSS feed.

Image 1

Introduction

I have implement this explorer bar with the help of the BandObject base class as well as this article Extending Explorer with Band Objects using .NET and Windows Forms. This vertical explorer bar actually consumes the RSS feed for CodeProject's latest article briefs at http://www.codeproject.com/webservices/articlerss.aspx, extract the details of each article and then display them in a scrolling fashion.

An overview of CPBar design

Image 2

The CodeProjectBar object is something like a form which you can just drag and drop controls from the toolbox. As for ScrollScreen, it is a custom control that holds many RichLabel objects and coordinate their scrolling through the use of a timer. The RichLabel object does nothing more than just organizing and formatting the data for display. Besides that, it is also supposed to hide the caret. (See Issues yet to address section) 

Consuming CP's RSS Feed

Image 3

The diagram above shows part of what is contained in the RSS feed file. Each item tag represent an article brief and between them contains information such as article title, description, author, etc. So to extract them, here is what I have done.

C#
private void DownloadCPRSSFeed(string url /* url of the rss feed */)
{
    XmlTextReader xmlTextReader = new XmlTextReader(url);

    // We don't want to handle whitespaces
    xmlTextReader.WhitespaceHandling = WhitespaceHandling.None;

    // Read through the xml document
    while(xmlTextReader.Read())
    {
        // Check if this is an element of name "item", continue reading
        if (xmlTextReader.NodeType == XmlNodeType.Element 
               && xmlTextReader.Name == "item")
        {
            // Continue read
            xmlTextReader.Read();

            // Get the content for each element. Although I am 
            // not interested in the "category"
            // data, i still need to follow the order so that 
            // I can reach the date section.
            string title = xmlTextReader.ReadElementString("title");
            string desc = xmlTextReader.ReadElementString("description");
            string link = xmlTextReader.ReadElementString("link");
            string author = xmlTextReader.ReadElementString("author");
            string category = xmlTextReader.ReadElementString("category");
            string date = xmlTextReader.ReadElementString("pubDate");

            // Add an item for these data to our scroll screen
            scrollArticlesScreen.AddItem(date, title, link, author, desc);
        }
    }
}

Setting up the CPBar

Image 4

This is a simple setup program to install the CPBar onto your machine. Below shows the code for the installation and uninstallation part.

C#
// Install
private void btnInstallCPBar_Click(object sender, System.EventArgs e)
{            
    // Run "gacutil.exe /i CPBar.dll" and "regasm CPBar.dll"
    System.Diagnostics.Process.Start(Application.StartupPath + 
         '\\' + "gacutil.exe", "/i CPBar.dll");
    System.Diagnostics.Process.Start(Application.StartupPath + 
         '\\' + "regasm.exe", "CPBar.dll");
}

// Uninstall
private void btnUninstallCPBar_Click(object sender, System.EventArgs e)
{
    // Run "regasm /u CPBar.dll" and "gacutil.exe /u CPBar.dll"
    System.Diagnostics.Process.Start(Application.StartupPath + '\\' 
         + "regasm.exe", "/u CPBar.dll");
    System.Diagnostics.Process.Start(Application.StartupPath + '\\' 
         + "gacutil.exe", "/u CPBar.dll");
}

Issues yet to address

Here are some issues that i have encountered but until now, I still couldn't find solution for them.

  • Hand cursor not shown when it is over link in RichLabel (but the link still works)
  • This is actually not the case when the ScrollScreen is not hosted in CodeProjectBar. i.e. I created another application and drag my ScrollScreen control onto it.

  • Caret is still visible when RichLabel is being clicked
  • I couldn't find any method like HideCaret() or something like that in C#.

History

None.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionControlling Sidebar from BHO Pin
Alex Shneyder9-Oct-07 17:22
Alex Shneyder9-Oct-07 17:22 
QuestionKeeping track of the main page state, and getting url from the address bar Pin
Alex Shneyder5-Oct-07 10:39
Alex Shneyder5-Oct-07 10:39 
Generalhi Pin
hassannasar21-Feb-06 18:11
hassannasar21-Feb-06 18:11 
GeneralRe: hi Pin
Weiye Chen21-Feb-06 22:49
Weiye Chen21-Feb-06 22:49 
Generaldidn't found any bar Pin
hassannasar17-Feb-06 15:15
hassannasar17-Feb-06 15:15 
GeneralRe: didn't found any bar Pin
Weiye Chen19-Feb-06 1:07
Weiye Chen19-Feb-06 1:07 
GeneralRe: didn't found any bar Pin
hassannasar19-Feb-06 17:15
hassannasar19-Feb-06 17:15 
GeneralNo another browser Pin
Member 185330119-Jun-05 22:42
Member 185330119-Jun-05 22:42 
GeneralRe: No another browser Pin
Weiye Chen3-Jul-05 18:42
Weiye Chen3-Jul-05 18:42 
GeneralCould this be like IE's "MyFavorite" Pin
khwu20-Jul-03 1:48
khwu20-Jul-03 1:48 
GeneralRe: Could this be like IE's "MyFavorite" Pin
Weiye Chen20-Jul-03 3:05
Weiye Chen20-Jul-03 3:05 
GeneralRe: Could this be like IE's "MyFavorite" Pin
khwu20-Jul-03 3:40
khwu20-Jul-03 3:40 
QuestionWhat excellent??? Pin
Manuel Salvatore7-Jul-03 21:31
Manuel Salvatore7-Jul-03 21:31 
AnswerRe: What excellent??? Pin
Chris Richner8-Jul-03 22:24
Chris Richner8-Jul-03 22:24 
GeneralRe: What excellent??? Pin
Weiye Chen9-Jul-03 2:10
Weiye Chen9-Jul-03 2:10 
GeneralExcellent! Pin
Kant7-Jul-03 17:10
Kant7-Jul-03 17:10 
GeneralRe: Excellent! Pin
Weiye Chen7-Jul-03 17:44
Weiye Chen7-Jul-03 17:44 
GeneralVery nice, just one problem so far... Pin
leppie7-Jul-03 16:45
leppie7-Jul-03 16:45 
GeneralRe: Very nice, just one problem so far... Pin
Weiye Chen7-Jul-03 17:38
Weiye Chen7-Jul-03 17:38 
GeneralRe: Very nice, just one problem so far... Pin
leppie7-Jul-03 17:51
leppie7-Jul-03 17:51 
GeneralRe: Very nice, just one problem so far... Pin
leppie7-Jul-03 17:53
leppie7-Jul-03 17:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.