我有一个餐厅预订系统正在进行中,我在将预订添加到我的桌子时遇到了麻烦。我有一个按钮,通过VBA点击事件添加预订。
这是我使用的代码,当我尝试添加预订时,有时会有效,有时则不会:
Private Sub AddRes_Click()
CurrentDb.Execute " INSERT INTO tblReserve(CustomerID, ResDate, ResTime, TableNum) " & _
" VALUES(" & Me.txtCustID & ",'" & Me.txtResDate & "','" & _
Me.txtResTime & "','" & Me.txtTableNum & "')"
End Sub