【文章內(nèi)容簡(jiǎn)介】
tion學(xué)生信息Command2caption企業(yè)信息Command3caption就業(yè)信息Command4caption退出事件代碼:輸入信息的事件代碼:“學(xué)生信息”的click事件過(guò)程Private Sub Command1_Click()End Sub “企業(yè)信息”的click事件過(guò)程Private Sub Command2_Click()End Sub “就業(yè)信息”的click事件過(guò)程Private Sub Command3_Click()End Sub“退出”的click事件過(guò)程Private Sub Command4_Click()End Sub窗體5名稱:界面:功能:進(jìn)行學(xué)生信息的添加、刪除、查詢、保存以及查看報(bào)表屬性設(shè)置表: 對(duì)象 屬性 屬性值Label1caption學(xué)生編號(hào)Label2caption姓名Label3caption性別Label4caption專業(yè)Command1caption首條記錄Command2caption尾記錄Command3caption上一條Command4caption下一條Command5caption添加Command6caption刪除Command7caption保存Command8caption返回Command9caption報(bào)表事件代碼:“首條記錄”命令按鈕的click事件過(guò)程Private Sub Command1_Click() End Sub“尾記錄”命令按鈕的click事件過(guò)程Private Sub Command2_Click(Index As Integer)End Sub“上一條”命令按鈕的click事件過(guò)程Private Sub Command3_Click()If Then MsgBox 已到記錄頭Else End If End Sub“下一條”命令按鈕的click事件過(guò)程Private Sub Command4_Click()If Then MsgBox 已到記錄尾Else End IfEnd Sub“添加”命令按鈕的click事件過(guò)程Private Sub Command5_Click() End Sub“刪除”命令按鈕的click事件過(guò)程Private Sub Command6_Click()End Sub“保存”命令按鈕的click事件過(guò)程Private Sub Command7_Click()End Sub “返回”命令按鈕的click事件過(guò)程 Private Sub Command8_Click()End Sub “報(bào)表”命令按鈕的click事件過(guò)程Private Sub Command9_Click()End Sub窗體6名稱:界面:功能:進(jìn)行企業(yè)信息的添加、刪除、查詢、保存以及查看報(bào)表屬性設(shè)置表: 對(duì)象 屬性 屬性值Label1caption學(xué)生編號(hào)Label2caption公司編號(hào)Label3caption公司名稱Label4caption公司地址Label5caption公司類型Label6caption公司電話Command1caption首條記錄Command2caption尾記錄Command3caption上一條Command4caption下一條Comma