A family of Microsoft relational database management systems designed for ease of use.
"This all depends on the data types of your fields." is EmpModule a text field? If so you need to wrap it in quotes.
Notice I added the debug.print? Did you open the debug window to see the values of strSQL?
strSQL = "INSERT INTO [tbl_EmpTrainingData] (EmpID, EmpTrainingDate, EmpTrainingLocation, EmpHours,EmpModule) " & _
"VALUES (" & Me.Emp_ID & ", #" & Me.frm_input_TrainingDate & "# , """ & _
Me.frm_imput_Location & """, " & Me.frm_input_Hours & ", """ & Me.frm_input_Module_cbo & """)"
If your code still errors, reply back with the data types as well as the value in the debug window.
Also, always add Option Explicit in the general declarations of your module and compile all of your code.