findstockview.h
来自「股票搜索程序,可自动搜索符合一定条件的股票。这里的条件主要包括前N天的成交量、价」· C头文件 代码 · 共 83 行
H
83 行
#if !defined(AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_)
#define AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FindStockView.h : header file
//
#include "DataStruct.h"
/////////////////////////////////////////////////////////////////////////////
// CFindStockView form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
class CFindStockView : public CFormView
{
protected:
CFindStockView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CFindStockView)
// Form Data
public:
//{{AFX_DATA(CFindStockView)
enum { IDD = IDD_DLG_SEARCH };
CListBox m_oListType;
CEdit m_oEditAll;
CListBox m_oListStocks;
//}}AFX_DATA
// Attributes
public:
CWinThread* m_pThread;
float m_Param[PARAM_MAX];
CStatic* m_oParamStatic[PARAM_MAX];
CEdit* m_oParamEdit[PARAM_MAX];
bool m_bSearching;
// Operations
public:
void stopSearch();
CString getParamStr(int nParamNo);
void GetParamCtrl(int nType);
void ShowStock(CString sStockCode, int nType) ;
int getParam(int nType);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CFindStockView)
public:
virtual void OnInitialUpdate();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CFindStockView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CFindStockView)
afx_msg void OnBtnStart();
afx_msg void OnBtnCopy();
afx_msg void OnSelchangeListType();
afx_msg void OnBtnSaveparam();
afx_msg void OnBtnStop();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_FINDSTOCKVIEW_H__B307A969_AC8D_4740_88FD_7405733B2398__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?