Click here to Skip to main content
Licence 
First Posted 6 Jul 2003
Views 67,463
Bookmarked 33 times

CPBar for latest article briefs (RSS feed)

By | 6 Jul 2003 | Article
This article is about creating a vertical explorer bar which displays CodeProject's latest article briefs from its RSS feed.

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

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

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.

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

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

// 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

About the Author

Weiye Chen

Other

Singapore Singapore

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionControlling Sidebar from BHO PinmemberAlex Shneyder17:22 9 Oct '07  
QuestionKeeping track of the main page state, and getting url from the address bar PinmemberAlex Shneyder10:39 5 Oct '07  
Generalhi Pinmemberhassannasar18:11 21 Feb '06  
GeneralRe: hi PinmemberWeiye Chen22:49 21 Feb '06  
Generaldidn't found any bar Pinmemberhassannasar15:15 17 Feb '06  
GeneralRe: didn't found any bar PinmemberWeiye Chen1:07 19 Feb '06  
GeneralRe: didn't found any bar Pinmemberhassannasar17:15 19 Feb '06  
no
 
not found in
 
no any new
View->Explorer Bar
 
send to me the code and the demo Rose | [Rose]
 
to max_hassannasar@yahoo.com
 
hassan nasar
GeneralNo another browser PinmemberCataldo Esposito22:42 19 Jun '05  
GeneralRe: No another browser PinmemberWeiye Chen18:42 3 Jul '05  
GeneralCould this be like IE's "MyFavorite" Pinmemberkhwu1:48 20 Jul '03  
GeneralRe: Could this be like IE's "MyFavorite" PinmemberWeiye Chen3:05 20 Jul '03  
GeneralRe: Could this be like IE's "MyFavorite" Pinmemberkhwu3:40 20 Jul '03  
QuestionWhat excellent??? PinmemberManuel Salvatore21:31 7 Jul '03  
AnswerRe: What excellent??? PinmemberJerry Maguire22:24 8 Jul '03  
GeneralRe: What excellent??? PinmemberWeiye Chen2:10 9 Jul '03  
GeneralExcellent! PinmemberKant17:10 7 Jul '03  
GeneralRe: Excellent! PinmemberWeiye Chen17:44 7 Jul '03  
GeneralVery nice, just one problem so far... Pinmemberleppie16:45 7 Jul '03  
GeneralRe: Very nice, just one problem so far... PinmemberWeiye Chen17:38 7 Jul '03  
GeneralRe: Very nice, just one problem so far... Pinmemberleppie17:51 7 Jul '03  
GeneralRe: Very nice, just one problem so far... Pinmemberleppie17:53 7 Jul '03  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 7 Jul 2003
Article Copyright 2003 by Weiye Chen
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid