毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 课程设计 >> 正文

VB图书管理系统 第9页

更新时间:2008-3-1:  来源:毕业论文


VB图书管理系统 第9页
answer = MsgBox("确定要删除吗
?", vbYesNo, "")

  
If answer = vbYes Then

  
DataGrid1.AllowDelete = True

  
rs_zhiban.Delete

  
rs_zhiban.Update

  
DataGrid1.Refresh

  MsgBox "成功删除
!", vbOKOnly + vbExclamation, ""

  
DataGrid1.AllowDelete = False

  
Else

  
Exit Sub

  
End If

  
delerror:

  
If Err.Number <> 0 Then

  
MsgBox Err.Description

  
End If

  
End Sub

  
Private Sub Form_Load()

  
Dim sql As String

  
On Error GoTo loaderror

  sql = "select * from 值班管理
"

  
rs_zhiban.CursorLocation = adUseClient

  rs_zhiban.Open sql, conn, adOpenKeyset, adLockPessimistic ' 打开数据库


  ' 设定DataGrid控件属性

  DataGrid1.AllowAddNew = False ' 不可增加

  DataGrid1.AllowDelete = False ' 不可删除

  DataGrid1.AllowUpdate = False

  
Set DataGrid1.DataSource = rs_zhiban

  
Exit Sub

  
loaderror:

  
MsgBox Err.Description

  
End Sub

  
Private Sub Form_Unload(Cancel As Integer)

  
Set DataGrid1.DataSource = Nothing

  
rs_zhiban.Close

  
End Sub

  (8) 投诉管理子窗体代码


  投诉管理子窗体是为了对人员进行更好的管理而设置的,可以向其添加投诉的对象、时间和内容等。投诉管理运行后的子窗体如图45所示。

  

  图45 运行的投诉管理子窗体

  以下为窗体的代码:

  
Private Sub Command1_Click()

  
On Error GoTo adderr

  
Text1.SetFocus

  
Adodc1.Recordset.AddNew

  
Exit Sub

  
adderr:

  
MsgBox Err.Description

  
End Sub

  
Private Sub Command2_Click()

  
On Error GoTo deleteerr

  
With Adodc1.Recordset

  
If Not .EOF And Not .BOF Then

  If MsgBox("删除当前记录吗
?", vbYesNo + vbQuestion) = vbYes Then

  
.Delete

  
.MoveNext

  
If .EOF Then .MoveLast

  
End If

  
End If

  
End With

  
Exit Sub

  
deleteerr:

  
MsgBox Err.Description

  
End Sub

  
Private Sub Command3_Click()

  
Adodc1.Recordset.MovePrevious

  
If Adodc1.Recordset.BOF Then

  MsgBox "这是第一条记录
", vbOKCancel + vbQuestion

  
Adodc1.Recordset.MoveFirst

  
End If

  
End Sub

  
Private Sub Command4_Click()

  
Adodc1.Recordset.MoveNext

  
If Adodc1.Recordset.EOF Then

  MsgBox "这是最后一条记录", vbOKCancel + vbQuestion

上一页  [1] [2] [3] [4] [5] [6] [7] [8] [9] 

VB图书管理系统 第9页下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。