📄 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 + -