[求助]为什么总是提示学号类型不对
Function AddStudent()On Error GoTo msg
If AddStu.Cmdadd.Caption = "增加学生" Then
AddStu.Data1.Recordset.AddNew
AddStu.Cmdadd.Caption = "保存"
AddStu.Txtrno.SetFocus
AddStu.Txtrno.Text = ""
Else
If AddStu.Cmdadd.Caption = "保存" Then
AddStu.Data1.Recordset.Updata
AddStu.Data1.Refresh
AddStu.Cmdadd.Caption = "增加学生"
End If
End If
msg:
If Err.Number = 3022 Then
MsgBox "该学号不存在!"
AddStu.Txtrno.SetFocus
ElseIf Err.Number = 3426 Then
MsgBox "请输入正确格式的学号!"
ElseIf Err.Number <> 0 Then
MsgBox Err.Number & Err.Description
End If
End Function
上面是模块里面的代码
在学号的TXT框输入数字总是提示学号类型不对
Cmd增加学生的代码
Private Sub Cmdadd_Click()
general.AddStudent
End Sub
我不知道错在什么地方了