⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copyvcfiledlg.h

📁 自己写的加密 Asp源码的工具
💻 H
字号:
// CopyVCFileDlg.h : header file
//

#if !defined(AFX_COPYVCFILEDLG_H__37E0DE9C_E6EF_488B_A694_1B71BB69ABD6__INCLUDED_)
#define AFX_COPYVCFILEDLG_H__37E0DE9C_E6EF_488B_A694_1B71BB69ABD6__INCLUDED_

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

#include "RegKey.h"
/////////////////////////////////////////////////////////////////////////////
// CCopyVCFileDlg dialog

class CCopyVCFileDlg : public CDialog
{
// Construction
public:
	BOOL CopyVCFile( CString strSourcePathName,CString strDesPathName );
	CCopyVCFileDlg(CWnd* pParent = NULL);	// standard constructor

//Attributes
public:
	BOOL IsIncludeFile(CString strPathName , CString strFileName);
	BOOL IsNoCopyFolder( CString strFolderName );
	BOOL IsNoCopyFile(CString strFileName);
	void InitCopyData();
	void SaveSet();
	void InitDlg();
	void StringToArray( CString strStuff , CStringArray &asArray , CString strApart );
	BOOL		GetElementItem(CString &strStuff, CString &strItem,CString strApart);
	CString GetFileExtName( CString strFileName );
	CString			m_strDesPathName;
	CString			m_strSourcePathName;
	CStringArray	m_asNoCopyDir;
	CStringArray	m_asNoCopyFile;
	CStringArray	m_asIncFile;
// Dialog Data
	//{{AFX_DATA(CCopyVCFileDlg)
	enum { IDD = IDD_COPYVCFILE_DIALOG };
	CStatic			m_ctlCopying;
	CComboBox		m_ctlSourcePathName;
	CButton			m_ctlNoOverNewWrite;
	CComboBox		m_ctlDesPathName;
	CString			m_strNoCopyDir;
	CString			m_strNoCopyFile;
	CString			m_strCopying;
	CString			m_strIncludeFile;
	CString	m_strScrencPath;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CCopyVCFileDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	virtual void OnOK();
	afx_msg void OnDelsource();
	afx_msg void OnBnSource();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_COPYVCFILEDLG_H__37E0DE9C_E6EF_488B_A694_1B71BB69ABD6__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -