You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
// BlackFinderTestDlg.h : header file
|
|
//
|
|
|
|
#if !defined(AFX_BLACKFINDERTESTDLG_H__E441B700_6E63_415A_ADDE_5C875CF662AB__INCLUDED_)
|
|
#define AFX_BLACKFINDERTESTDLG_H__E441B700_6E63_415A_ADDE_5C875CF662AB__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CBlackFinderTestDlg dialog
|
|
|
|
|
|
#define WM_HASH_LIST_LOADED WM_USER + 1001
|
|
|
|
class CBlackFinderTestDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CBlackFinderTestDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CBlackFinderTestDlg)
|
|
enum { IDD = IDD_BLACKFINDERTEST_DIALOG };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CBlackFinderTestDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
private:
|
|
HANDLE hdledbf,hdlesql,hdlesql2;
|
|
CEdit * Pinfo;
|
|
// BOOL m_isLoad;
|
|
CString m_BasePath;
|
|
CString m_workPath;
|
|
CString m_TmpPath;
|
|
|
|
private:
|
|
void myInitDlg();
|
|
void AppendInfo(char * ptr);
|
|
void AppendInfo(CString & cstr);
|
|
CString GetDateTimeStr();
|
|
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CBlackFinderTestDlg)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
afx_msg void OnButtoncreate();
|
|
afx_msg void OnButtonTraversal();
|
|
afx_msg void OnButtonload();
|
|
afx_msg void OnButtonfind();
|
|
afx_msg void OnButtonversion();
|
|
afx_msg void OnButtonloadback();
|
|
afx_msg LRESULT OnMyListLoader(WPARAM w,LPARAM l);
|
|
afx_msg void OnBtnFind2();
|
|
afx_msg void OnButtonfindsql();
|
|
afx_msg void OnButtonversionsql();
|
|
afx_msg void OnButtoncreatesql();
|
|
afx_msg void OnButtonloadsql();
|
|
afx_msg void OnButtonsql();
|
|
afx_msg void OnBtnFindsql2();
|
|
afx_msg void OnButtonloadbacksql();
|
|
afx_msg void OnButtonfindsq3();
|
|
afx_msg void OnButtonsql2();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_BLACKFINDERTESTDLG_H__E441B700_6E63_415A_ADDE_5C875CF662AB__INCLUDED_)
|