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

MoreFast Add-In for faster Development

,
Rate me:
Please Sign up or sign in to vote.
4.53/5 (9 votes)
8 Aug 20026 min read 176.9K   1.9K   45  
A VS addin that does a variety of different tasks to make programming easier.
#if !defined(AFX_CHANGELOGDLG_H__8E28184D_EBC6_4445_A797_9F633F4EC46F__INCLUDED_)
#define AFX_CHANGELOGDLG_H__8E28184D_EBC6_4445_A797_9F633F4EC46F__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CChangeLogDlg dialog
#include <afxdlgs.h>
class CCommands;

class CChangeLogDlg : public CDialog
{
// Construction
public:
	CChangeLogDlg(CWnd* pParent = NULL);   // standard constructor
	void SetCommandObject(CCommands *command);

// Dialog Data
	//{{AFX_DATA(CChangeLogDlg)
	enum { IDD = IDD_CHANGELOG };
	CEdit	m_ctlProblemDesc;
	CString	m_sProblemDesc;
	CString	m_sProblemNumber;
	CString	m_sUserPMFKey;
	CString	m_sProject;
	//}}AFX_DATA

	CCommands *m_pCommands;

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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CChangeLogDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnUpdateEdProblemDesc();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CHANGELOGDLG_H__8E28184D_EBC6_4445_A797_9F633F4EC46F__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
Founder IntelliPro Solutions Pvt. Ltd.
India India
A 8 or something in .NET, living in Ahmedabad, India owned IntelliPro Solutions Pvt. Ltd..

Currently working on .NET technologies, MVC and Silverlight.

My little blog is for helping community with the solution for problems or helping them to understand new technology. You can reach to my blog at http://maniish.wordpress.com.

To contact me, post comment here or email me at manish AT iprospl.com
This is a Organisation (No members)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions