Thanks Rolliee
I have a clear understand know of what im doing but i am getting a "TYPE MISMATCH" Error.
Below is the code behind the save button.
option Compare Database
Option Explicit
Private Sub Comsave_Click()
On Error GoTo Err_Comsave_Click
Dim xname As String
Dim xreghours As Integer
Dim xovertime1 As Integer
Dim xovertime2 As Integer
Dim xSick As Integer
Dim rs As ADODB.Recordset
'Dim rs As DAO.Recordset
Set rs = CurrentDb.Openrecordset("update_employee"
xname = Me.Cbo21
xreghours = Me.RegHoure
xovertime1 = Me.OTx1
xovertime2 = Me.OTx2
xSick = Me.sick_hrs
If IsNull(Me.Cbo21) Then
MsgBox "Pleaase select a employee name."
Exit Sub
End If
If IsNull(Me.RegHoure) Then
MsgBox "Please Enter the Regular hours"
Exit Sub
End If
rs.AddNew
rs("fullname"

= Me!xname
rs("reghours"

= Me!xRegHoure
rs("overtime1"

= Me!xovertime1
rs("overtime2"

= Me!xovertime2
rs("sick"

= Me!xSick
'rs("FieldTwo"

= Me![FieldTwo]
rs.update
'DoCmd.GoToRecord , , acNewRec
rs.Close
Set rs = Nothing
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_Comsave_Click:
Exit Sub
Err_Comsave_Click:
MsgBox Err.Description
Resume Exit_Comsave_Click
End Sub