InstFunDlg.cpp
上传用户:wenjimin
上传日期:2014-08-12
资源大小:111k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // InstFunDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyStock.h"
  5. #include "InstFunDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CInstFunDlg dialog
  13. CInstFunDlg::CInstFunDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CInstFunDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CInstFunDlg)
  17. //}}AFX_DATA_INIT
  18. }
  19. void CInstFunDlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(CInstFunDlg)
  23. DDX_Control(pDX, IDC_LIST2, m_list2);
  24. DDX_Control(pDX, IDC_EDIT1, m_edit);
  25. DDX_Control(pDX, IDC_LIST1, m_list1);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CInstFunDlg, CDialog)
  29. //{{AFX_MSG_MAP(CInstFunDlg)
  30. ON_LBN_SELCHANGE(IDC_LIST2, OnSelchangeList2)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CInstFunDlg message handlers
  35. BOOL CInstFunDlg::OnInitDialog() 
  36. {
  37. CDialog::OnInitDialog();
  38. ftab=new FunTable[3];
  39. ftab[0].fun="AAA";
  40. ftab[1].fun="BBB";
  41. ftab[2].fun="CCC";
  42. ftab[0].str="123";
  43. ftab[1].str="456";
  44. ftab[2].str="789";
  45. m_list2.AddString(ftab[0].fun);
  46. m_list2.AddString(ftab[1].fun);
  47. m_list2.AddString(ftab[2].fun);
  48. return TRUE;  // return TRUE unless you set the focus to a control
  49.               // EXCEPTION: OCX Property Pages should return FALSE
  50. }
  51. void CInstFunDlg::OnSelchangeList2() 
  52. {
  53. int n=m_list2.GetCurSel();
  54. str=ftab[n].str;
  55. m_edit.SetWindowText(str);
  56. }