添加多一个控件
Private Sub Command3_Click() ‘确定增加新记录 Adodc1.Recordset.AddNew With Adodc1 .Recordset("文件名") = Trim$(Text1.Text) .Recordset("日期") = Date & "/" & Time ’按这种方式填入其他的记录就可以了,不清楚你的数据库字段名,自己填吧。text11可以不要。 .Recordset("存档合号") = Trim$(Text2.Text) .Recordset("本合序号") = Trim$(Text3.Text) .Recordset("备注") = Trim$(Text4.Text) .Recordset.Update End With
End Sub