?? loginfoview.h
字號:
// LogInfoView.h : CLogInfoView 類的接口
//
#pragma once
class CLogInfoView : public CListView
{
protected: // 僅從序列化創建
CLogInfoView();
DECLARE_DYNCREATE(CLogInfoView)
// 屬性
public:
CLogInfoDoc* GetDocument() const;
// 操作
public:
static CString m_Column[8];
_RecordsetPtr m_pUserSet;
_CommandPtr m_pCommand;
FieldsPtr m_pFieldsPtr;
FieldPtr m_pFieldPtr;
_RecordsetPtr m_pUserSet1;
FieldsPtr m_pFieldsPtr1;
FieldPtr m_pFieldPtr1;
int IntPageNo;
int MaxPageNo;
// 重寫
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnInitialUpdate(); // 構造后第一次調用
// 實現
public:
virtual ~CLogInfoView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函數
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnDatainput();
void ShowDataInList(int PageNo);
void AnalysisString(CString _str,CString _strTemp[]);
void AnalysisString1(CString _str,CString _strTemp[]);
protected:
virtual void OnUpdate(CView* /*pSender*/, LPARAM /*lHint*/, CObject* /*pHint*/);
public:
afx_msg void OnTestfile();
afx_msg void OnStringtest();
afx_msg void OnMoveNext();
afx_msg void OnCreateuser();
afx_msg void OnInputlog1();
afx_msg void OnModifytime();
afx_msg void OnModifyaddress();
afx_msg void OnUserIdentify();
afx_msg void OnDeletenuser();
afx_msg void OnSessionIdentify();
afx_msg void OnIdentifySameweb();
};
#ifndef _DEBUG // LogInfoView.cpp 的調試版本
inline CLogInfoDoc* CLogInfoView::GetDocument() const
{ return reinterpret_cast<CLogInfoDoc*>(m_pDocument); }
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -