freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

計算機-公司人事管理系統(tǒng)(編輯修改稿)

2025-01-09 01:22 本頁面
 

【文章內(nèi)容簡介】 表 5. 2. 8 職稱類別表 表 5. 2. 9 職務類別表 14 5. 2. 10 職工表 5. 2. 11 職工家庭情況表 6 應用程序設置和代碼分析 6. 1. 配置 ODBC 數(shù)據(jù)源和添加 skin++皮膚 本系統(tǒng)使用的是當程序運行時自動配置數(shù)據(jù)源的方法。實現(xiàn)方法如下: 首先在 文件中添加 頭文件 , include 和數(shù)據(jù)庫 API 頭文件, include //ODBC 數(shù)據(jù)庫 API 頭文件 。 然后在 的 BOOL CManagerApp::InitInstance() 函數(shù)中添加如下代碼 SQLConfigDataSource(NULL,ODBC_ADD_DSN, Microsoft Access Driver (*.mdb), DSN=Manager1\0 Description=Hotel\0 15 FileType=Access\0 DBQ=.\\\0 )。 添加皮膚 在 中添加 include .\skins\ 在 BOOL CManagerApp::InitInstance() 函數(shù)中添加 InitializeSkin(_T())。 6. 2 人事檔案瀏覽 先建立 IDD_PAGE_BASEINFO 對話框 , 之后為此對話框的部分控件建立關聯(lián)變量 , 之后再建立 IDD_DIALOG_BROWSE 對話框, 之后為此對話框的部分控件建立關聯(lián)變量。 添加代碼實現(xiàn)人事檔案瀏覽功能 實現(xiàn)這個功能的主要代碼如下: void CBrowseDlg::OnButtonSearch() { // TODO: Add your control notification handler code here UpdateData(TRUE)。 if(m_nCondition0) { MessageBox(請選擇查詢條件! )。 ()。 16 return。 } if(m_strContent==) { MessageBox(請輸入查詢內(nèi)容! )。 ()。 return。 } CString strSQL。 if(0==m_nCondition) {//按部門查詢 (select * from person where dept=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(1==m_nCondition) {//按職工職務查詢 (select * from person where duty=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(2==m_nCondition) {//按職工職稱查詢 (select * from person where technical=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(3==m_nCondition) {//按職工類型查詢 (select * from person where isworker=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(4==m_nCondition) {//按工資類別查詢 (select * from person where aboutpay=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(5==m_nCondition) {//按職工性別查詢 (select * from person where sex=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(6==m_nCondition) {//按婚姻狀況查詢 (select * from person where ismarry=39。%s39。,m_strContent)。 17 RefreshData(strSQL)。 } else if(7==m_nCondition) {//按職工民族查 詢 (select * from person where folk=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(8==m_nCondition) {//按政治面貌查詢 (select * from person where political=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(9==m_nCondition) {//按文化程度查詢 (select * from person where education=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } //設置按鈕狀態(tài) (TRUE)。 (TRUE)。 (FALSE)。 (FALSE)。 m_bNew = FALSE。 (TRUE)。 (FALSE)。 } void CBrowseDlg::OnButtonSearch() { // TODO: Add your control notification handler code here UpdateData(TRUE)。 if(m_nCondition0) { MessageBox(請選擇查詢條件! )。 ()。 return。 } if(m_strContent==) { MessageBox(請輸入查詢內(nèi)容! )。 18 ()。 return。 } CString strSQL。 if(0==m_nCondition) {//按部門查詢 (select * from person where dept=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(1==m_nCondition) {//按職工職務查詢 (select * from person where duty=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(2==m_nCondition) {//按職工職稱查詢 (select * from person where technical=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(3==m_nCondition) {//按職工類型查詢 (select * from person where isworker=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(4==m_nCondition) {//按工資類別查詢 (select * from person where aboutpay=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(5==m_nCondition) {//按職工性別查詢 (select * from person where sex=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(6==m_nCondition) {//按婚姻狀況查詢 (select * from person where ismarry=39。%s39。,m_strContent)。 RefreshData(strSQL)。 19 } else if(7==m_nCondition) {//按職工民族查詢 (select * from person where folk=39。%s39。,m_strContent)。 RefreshData(strSQL)。 } else if(8==m_nCondition) {//按政治面貌查詢 (select * from person where political=39。%s39。,m_strContent)。 RefreshData(strSQL)。
點擊復制文檔內(nèi)容
研究報告相關推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1