Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / C#

COM in .NET

Rate me:
Please Sign up or sign in to vote.
2.73/5 (20 votes)
2 Feb 2008CPOL2 min read 73.7K   842   26  
An article about COM in .NET
// UnManagedClientDlg.h : header file
//

#if !defined(AFX_UNMANAGEDCLIENTDLG_H__0D2BEAAC_6A1E_4A88_94DE_6177AB667DA6__INCLUDED_)
#define AFX_UNMANAGEDCLIENTDLG_H__0D2BEAAC_6A1E_4A88_94DE_6177AB667DA6__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CUnManagedClientDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CUnManagedClientDlg)
	enum { IDD = IDD_UNMANAGEDCLIENT_DIALOG };
	CString	m_strName;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CUnManagedClientDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnInvoke();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_UNMANAGEDCLIENTDLG_H__0D2BEAAC_6A1E_4A88_94DE_6177AB667DA6__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
India India
Sudeesh

Comments and Discussions