這部分代碼監視剪貼板中數據格式,只要剪貼板中數據變化,就在標題欄上顯示出所有可識別的數據格式
下面是所有該部分的代碼,我的至少在Release後可運行,不知能不能解決你的問題
// ClipSpyDlg.h : header file
//
#if !defined(AFX_CLIPSPYDLG_H_INCLUDED_)
#define AFX_CLIPSPYDLG_H_INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CClipSpyDlg dialog
class CClipSpyDlg : public CDialog
{
// Construction
public:
CClipSpyDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CClipSpyDlg)
enum { IDD = IDD_CLIPSPY_DIALOG };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CClipSpyDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CClipSpyDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();