YGFDGZDLG.CPP
资源名称:gongzi.rar [点击查看]
上传用户:ghostdhl
上传日期:2018-06-14
资源大小:9728k
文件大小:3k
源码类别:
数据库编程
开发平台:
Visual C++
- // Ygfdgzdlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "GZGLXT.h"
- #include "Ygfdgzdlg.h"
- #include "column.h"
- #include "columns.h"
- #include "COMDEF.H"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CYgfdgzdlg dialog
- CYgfdgzdlg::CYgfdgzdlg(CWnd* pParent /*=NULL*/)
- : CDialog(CYgfdgzdlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CYgfdgzdlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- m_hIcon = AfxGetApp()->LoadIcon(IDI_FDGZICON);
- }
- void CYgfdgzdlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CYgfdgzdlg)
- DDX_Control(pDX, IDC_ADODC1, m_ad);
- DDX_Control(pDX, IDC_DATAGRID1, m_da);
- DDX_Control(pDX, IDC_DATACOMBO1, m_dc);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CYgfdgzdlg, CDialog)
- //{{AFX_MSG_MAP(CYgfdgzdlg)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CYgfdgzdlg message handlers
- void CYgfdgzdlg::OnOK()
- {
- // TODO: Add extra validation here
- CString str;
- str = m_dc.GetText();
- m_ad.SetRecordSource("SELECT YGid AS 员工编号,YGxm AS 员工姓名,GRsds AS 个人所得税,ZFbz AS 住房补助,BXf AS 保险费,SHbz AS 生活补助 FROM Ygfdgzxmb WHERE YGid='"+str+"' ");
- m_ad.Refresh();
- _variant_t vIndex;
- vIndex=long(0);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(1);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(2);
- m_da.GetColumns().GetItem(vIndex).SetWidth(75);
- vIndex=long(3);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(4);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(5);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- //CDialog::OnOK();
- }
- BOOL CYgfdgzdlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- SetIcon(m_hIcon, TRUE);
- _variant_t vIndex;
- vIndex=long(0);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(1);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(2);
- m_da.GetColumns().GetItem(vIndex).SetWidth(75);
- vIndex=long(3);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(4);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- vIndex=long(5);
- m_da.GetColumns().GetItem(vIndex).SetWidth(60);
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }