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

正文內(nèi)容

數(shù)據(jù)庫原理及應(yīng)用課程設(shè)計(jì)報(bào)告-資料下載頁

2025-02-24 03:38本頁面

【導(dǎo)讀】對(duì)于一個(gè)只有十個(gè)以下員工的企業(yè)來說,老板可以憑借自己的記憶力記住。但是對(duì)于一個(gè)幾十人、上百人、甚至上千人的企業(yè)來說,光憑管理者的記。憶力肯定是不夠的,采用手工記賬的方式會(huì)非常不方便。軟件能夠完成公司員工信息的管理,這樣會(huì)大大減輕管理者的負(fù)擔(dān)。需要有一個(gè)記錄員工的員工編號(hào)、姓名、性別、籍貫、出生日期、住址等。需要有一個(gè)能夠管理員工的基本工資、獎(jiǎng)金、個(gè)稅、實(shí)發(fā)工資、發(fā)工資時(shí)。數(shù)據(jù)庫管理系統(tǒng)軟件:Access2021。

  

【正文】 )。 // *pResult = 0。 } 員工工資信息顯示 void CCase1View::OnDblclkListSalary(NMHDR* pNMHDR, LRESULT* pResult) { // TODO: Add your control notification handler code here = false。 = false。 // // 獲取用戶要查看的記錄的行號(hào) int row = 1。 row = ()。 // // 將顯示員工基本信息的列表框中的第 row 行記錄賦值到“員工工資管理”對(duì)話框中相應(yīng)的控件變量中 CString strTemp。 strTemp = (row, 0)。 = strTemp。 strTemp = (row, 1)。 = strTemp。 strTemp = (row, 2)。 = strTemp。 strTemp = (row, 3)。 = strTemp。 strTemp = (row, 4)。 = strTemp。 strTemp = (row, 5)。 = strTemp。 strTemp = (row, 6)。 = strTemp。 // //打開“員工工資管理”對(duì)話框 ()。 // *pResult = 0。 } 條件查詢 工號(hào)查詢 void CCase1View::OnSearchResumeById() { // TODO: Add your mand handler code here ()。 if (IDCANCEL == ())//打開“查詢”對(duì)話框輸入查詢條件 {return。} CString strSQL。 (select * from work_resume WHERE id = 39。%s39。, )。 // 構(gòu)造 SQL語句 DrawResumeList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } 安學(xué)位查詢 void CCase1View::OnSearchResumeByDegree() { // TODO: Add your mand handler code here ()。 if (IDCANCEL == ())//打開“查詢”對(duì)話框輸入查詢 條件 {return。} CString strSQL。 (select * from work_resume WHERE highest_degree = 39。%s39。, )。 // 構(gòu)造 SQL語句 DrawResumeList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } 畢業(yè)時(shí)間查詢 void CCase1View::OnSearchResumeByGradYear() { // TODO: Add your mand handler code here ()。 if (IDCANCEL == ())//打開“查詢”對(duì)話框輸入查詢條件 {return。 } CString strSQL。 (select * from work_resume WHERE highest_degree_time = %d, atoi())。 // 構(gòu)造 SQL語句 DrawResumeList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } 員工姓名查詢 void CCase1View::OnSearchResumeByName() { // TODO: Add your mand handler code here ()。 if (IDCANCEL == ())//打開“查詢”對(duì)話框輸入查詢條件 { return。 } CString strSQL。 (select * from work_resume WHERE name = 39。%s39。, )。 // 構(gòu)造 SQL語句 DrawResumeList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } 對(duì)應(yīng)的對(duì)話框的打開 void CCase1View::OnOpenSearchDlg() { // TODO: Add your mand handler code here if (IDCANCEL == ()) { return。 } CString strSQL。 (select * from %s WHERE %s = 39。%s39。, , , )。 // 構(gòu)造 SQL語句 if (basicInfo == ) { DrawBasicInfoList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } if (work_resume == ) { DrawResumeList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } if (salary == ) { DrawSalaryList(strSQL)。// 在數(shù)據(jù)庫中查詢并顯示查詢結(jié)果 } if (all_table == ) { CString strSQL2。 (select * from basicInfo WHERE %s = 39。%s39。, , )。 // 構(gòu)造 SQL語句 DrawBasicInfoList(strSQL2)。 (select * from work_resume WHERE %s = 39。%s39。, , )。 // 構(gòu)造 SQL語句 DrawResumeList(strSQL2)。 (select * from salary WHERE %s = 39。%s39。, , )。 // 構(gòu)造 SQL語句 DrawSalaryList(strSQL2)。 } } void CCase1View::OnBtnAddBasicinfo() { // TODO: Add your control notification handler code here OnAddBasicinfo()。 } void CCase1View::OnBtnAddResume() { // TODO: Add your control notification handler code here OnAddResume()。 } void CCase1View::OnBtnAddSalaryInfo() { // TODO: Add your control notification handler code here OnAddSalary()。 } void CCase1View::OnBtnDelBasicinfo() { // TODO: Add your control notification handler code here OnDeleteBasicinfo()。 } void CCase1View::OnBtnDelResume() { // TODO: Add your control notification handler code here OnDeleteResume()。 } void CCase1View::OnBtnDelSalaryInfo() { // TODO: Add your control notification handler code here OnDeleteSalary()。 } void CCase1View::OnBtnEditBasicinfo() { // TODO: Add your control notification handler code here OnEditBasicinfo()。 } void CCase1View::OnBtnEditResume() { // TODO: Add your control notification handler code here OnEditResume()。 } void CCase1View::OnBtnEditSalaryInfo() { // TODO: Add your control notification handler code here OnEditSalary()。 } 參考文獻(xiàn): 1) 《 Vsual C++程序設(shè)計(jì)與項(xiàng)目實(shí)踐》主編:安金梁 范秀平,電子工業(yè)出版社。 2)
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1