Click here to Skip to main content
15,881,380 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 343.4K   2K   144  
A framework to allow public web services to be used as objects in your application.
// WebResourceProvider_DemoDlg.h : header file
//

#if !defined(AFX_WEBRESOURCEPROVIDER_DEMODLG_H__C67E2B95_DFCF_45E6_83F8_2DC739F96604__INCLUDED_)
#define AFX_WEBRESOURCEPROVIDER_DEMODLG_H__C67E2B95_DFCF_45E6_83F8_2DC739F96604__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CWebResourceProvider_DemoDlg dialog

class CWebResourceProvider_DemoDlg : public CDialog
{
// Construction
public:
	CWebResourceProvider_DemoDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CWebResourceProvider_DemoDlg)
	enum { IDD = IDD_WEBRESOURCEPROVIDER_DEMO_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWebResourceProvider_DemoDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CWebResourceProvider_DemoDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	virtual void OnOK();
	virtual void OnCancel();
	afx_msg void OnExit();
	afx_msg void OnQuoteProvider();
	afx_msg void OnWeatherProvider();
	afx_msg void OnZipcodeDecoder();
	afx_msg void OnCodeprojectPostersProvider();
	afx_msg void OnTranslator();
	afx_msg void OnLinkChecker();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WEBRESOURCEPROVIDER_DEMODLG_H__C67E2B95_DFCF_45E6_83F8_2DC739F96604__INCLUDED_)

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