Click here to Skip to main content
15,885,757 members
Articles / Desktop Programming / MFC

WebResourceProvider

Rate me:
Please Sign up or sign in to vote.
4.90/5 (22 votes)
23 Mar 2007CPOL5 min read 344.4K   2K   144  
A framework to allow public web services to be used as objects in your application.
// DlgTopCodeProjectPosters.cpp : implementation file
//

#include "stdafx.h"
#include "WebResourceProvider_Demo.h"
#include "CodeProjectTopPostersProvider.h"
#include "DlgTopCodeProjectPosters.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgTopCodeProjectPosters dialog


CDlgTopCodeProjectPosters::CDlgTopCodeProjectPosters(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgTopCodeProjectPosters::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgTopCodeProjectPosters)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CDlgTopCodeProjectPosters::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgTopCodeProjectPosters)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgTopCodeProjectPosters, CDialog)
	//{{AFX_MSG_MAP(CDlgTopCodeProjectPosters)
	ON_BN_CLICKED(BUTTON_GET_POSTERS, OnGetPosters)
	ON_BN_CLICKED(BUTTON_EXIT, OnExit)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgTopCodeProjectPosters message handlers

void CDlgTopCodeProjectPosters::OnGetPosters() 
{
  // Get top count
  long nTop = 0;
  CString strTop;
  GetDlgItemText (EDIT_TOP, strTop);
  strTop.TrimLeft();
  strTop.TrimRight();
  if ((sscanf (strTop.GetBuffer(0), "%d", &nTop) != 1) ||
      (nTop <= 0) || (nTop > 40)) {
      AfxMessageBox ("Please enter a number between 1-40.");
      GetDlgItem (EDIT_TOP)->SetFocus();
      return;
  }

  // Get top posters
  CStringArray    posters;
  CodeProjectTopPostersProvider topPosters (posters, nTop);
  AfxGetApp()->DoWaitCursor (1);
  topPosters.fetchResource();
  AfxGetApp()->DoWaitCursor (-1);

  // Display results
  if (topPosters.getFetchStatus() == 0) {
      CString strPosters;
      strPosters.Format ("Top %d CodeProject posters:", nTop);
      SetDlgItemText (TEXT_POSTERS, strPosters);

      CListBox* pListBox = (CListBox *) GetDlgItem (LIST_POSTERS);
      ASSERT (pListBox != NULL);
      pListBox->ResetContent();
      for (long nPoster=0; (nPoster < posters.GetSize()); nPoster++)
          pListBox->AddString (posters.GetAt (nPoster));
  } else {
      CString strError;
      strError.Format ("Unable to get top %d CodeProject posters.", nTop);
      AfxMessageBox (strError);
      GetDlgItem (EDIT_TOP)->SetFocus();
  }
}

void CDlgTopCodeProjectPosters::OnOK() 
{
  OnGetPosters();
}

void CDlgTopCodeProjectPosters::OnCancel() 
{
  return;
}

void CDlgTopCodeProjectPosters::OnExit() 
{
	CDialog::OnOK();
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Canada Canada
Ravi Bhavnani is an ardent fan of Microsoft technologies who loves building Windows apps, especially PIMs, system utilities, and things that go bump on the Internet. During his career, Ravi has developed expert systems, desktop imaging apps, marketing automation software, EDA tools, a platform to help people find, analyze and understand information, trading software for institutional investors and advanced data visualization solutions. He currently works for a company that provides enterprise workforce management solutions to large clients.

His interests include the .NET framework, reasoning systems, financial analysis and algorithmic trading, NLP, HCI and UI design. Ravi holds a BS in Physics and Math and an MS in Computer Science and was a Microsoft MVP (C++ and C# in 2006 and 2007). He is also the co-inventor of 3 patents on software security and generating data visualization dashboards. His claim to fame is that he crafted CodeProject's "joke" forum post icon.

Ravi's biggest fear is that one day he might actually get a life, although the chances of that happening seem extremely remote.

Comments and Discussions