Click here to Skip to main content
15,884,176 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 652.3K   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_CREATEMSGDLG_H__DCBA09C6_0333_42D6_A35F_F6C9BA8158D0__INCLUDED_)
#define AFX_CREATEMSGDLG_H__DCBA09C6_0333_42D6_A35F_F6C9BA8158D0__INCLUDED_

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

#include "msoeapi.h"


/////////////////////////////////////////////////////////////////////////////
// CCreateMsgDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CCreateMsgDlg)
	enum { IDD = IDD_CREATE_MSG_DIALOG };
	CString	m_bodyValue;
	CString	m_fromValue;
	CString	m_subjectValue;
	CString	m_toValue;
	//}}AFX_DATA


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

// Implementation
public:
	/**
	Set the folder where the message should be created.
	The pointer is owned by the caller and it will not be released by this class.
	*/
	void SetFolder(IStoreFolder *pFolder);

protected:
	IStoreFolder *m_pFolder;

	// Generated message map functions
	//{{AFX_MSG(CCreateMsgDlg)
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CREATEMSGDLG_H__DCBA09C6_0333_42D6_A35F_F6C9BA8158D0__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