I have a button inside a from, i included the following code for the event onclick
Dim strSQL As String
strSQL = "INSERT INTO BusObjectiveUpdate (BusinessObjectDesc,BusinessReqID,BusObjectiveDate,PersonID) VALUES ('" & Me!BusinessObjectDesc & "'," & Me!BusinessReqID & "," & Me!BusObjectiveDate & "," & Me!PersonID & ");"
DoCmd.RunSQL strSQL
Me.Requery
whenever i click on the button i check the table BusObjectiveUpdate and i found no data there ?! Any help ?!!?