Click here to Skip to main content
15,880,405 members
Articles / Programming Languages / C++

Reading and Writing Messages in Outlook Express

Rate me:
Please Sign up or sign in to vote.
4.94/5 (44 votes)
27 Mar 20062 min read 650.2K   5.3K   105  
This article was done to provide an example of IStoreNamespace / IStoreFolder.
/* $Id: DemoDlg.cpp,v 1.3 2005/08/16 17:15:09 pyabo Exp $
 *
 * Author: Pablo Yabo (pablo.yabo@nektra.com)
 *
 * Copyright (c) 2004-2006 Nektra S.A., Buenos Aires, Argentina.
 * All rights reserved.
 *
 * You may modify and/or integrate this code into your commercial software
 * keeping this notice.
 *
 **/

#if !defined(AFX_MSGDIALOG_H__59268260_5287_4F43_9DF9_3BA3E797EA3D__INCLUDED_)
#define AFX_MSGDIALOG_H__59268260_5287_4F43_9DF9_3BA3E797EA3D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MsgDialog.h : header file
//

#include "msoeapi.h"


/////////////////////////////////////////////////////////////////////////////
// CMsgDlg dialog

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


// Dialog Data
	//{{AFX_DATA(CMsgDlg)
	enum { IDD = IDD_MSG_DIALOG };
	CListBox	m_listMsg;
	//}}AFX_DATA


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

// Implementation
public:
	~CMsgDlg();

	/**
	Set the folder associated to this dialog.
	The IStoreNamespace is not released.
	*/
	void SetFolder(IStoreNamespace *pSN, STOREFOLDERID dwFolderId);

	/**
	Put messages of the folder in the list box.
	*/
	void UpdateMessages();

	/**
	Mark the selected message as read or unread.
	*/
	void MarkSelection(BOOL asRead);

	/**
	Copy or Move the selected message.
	*/
	void CopyMoveMessage(BOOL move);

protected:
	IStoreFolder *m_pStoreFolder;
	IStoreNamespace *m_pStoreNamespace;
	CString m_dlgTitle;

	// Generated message map functions
	//{{AFX_MSG(CMsgDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnCopy();
	afx_msg void OnCreate();
	afx_msg void OnDelete();
	afx_msg void OnMove();
	afx_msg void OnMarkRead();
	afx_msg void OnMarkUnread();
	afx_msg void OnView();
	afx_msg void OnButtonViewBodies();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_MSGDIALOG_H__59268260_5287_4F43_9DF9_3BA3E797EA3D__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 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
Technical Lead http://www.nektra.com
Argentina Argentina
Pablo Yabo is a Software Developer since he was young, specialized in system internals.
In 2003 years ago founded with Sebastian Wain a Company named Nektra a custom software development company specialized in Outlook Plugin Development, Data Loss Prevention Solution Development and Windows Driver Development.

Comments and Discussions