Private Sub Command1_Click()
Adodc1.Recordset.AddNew
Adodc1.Recordset.Fields("序号") = Text3.Text
Adodc1.Recordset.Fields("景点名") = Text1.Text
Adodc1.Recordset.Fields("景点信息") = Text2.Text
Adodc1.Recordset.Update
Adodc1.Refresh
MsgBox "添加成功"
End Sub
这段代码运行了就显示错误91 看看问题出在哪里