pbaldy, I will post the entire code this might give you better idea of what is going on. Once again thanks for the quick reply
Option Compare Database
Option Explicit
Sub Combo107_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ID] = " & Me![Combo107]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
Private Sub Combo107_GotFocus()
End Sub
Private Sub Contract_Number_Click()
MsgBox ("You must enter a dash between the first two digits and the last 4 digits. Sample 00-0000")
End Sub
Private Sub Contract_Number_GotFocus()
MsgBox ("You must enter a dash between the first two digits and the last 4 digits. Sample 00-0000")
End Sub
Private Sub Contractor_Name_Click()
MsgBox ("If Correct Contactor Name is selected, verify correct Duns Number before proceeding")
End Sub
Private Sub ContractType_AfterUpdate()
If (Me.ContractType) = "CO" Then
MsgBox "You have just now added a NEW Construction Contract, please fill in the the following fields: (NTP) (AE Design Firm) (CM COR) (AE COR) (Warntee Date) (Region) (Construction Description)!"
End If
End Sub
Private Sub ContractType_Change()
'If (Me.ContractType) = "CO" Then
' MsgBox "Please fill in the the following fields NTP, AE Design Firm, CM COR, AE COR Warntee Date and the Construction Description!"
'End If
End Sub
Private Sub ContractType_Click()
'If (Me.ContractType) = "CO" Then
' MsgBox "Please fill in the the following fields NTP, AE Design Firm, CM COR, AE COR Warntee Date and the Construction Description!"
'End If
End Sub
Private Sub Command139_Click()
On Error GoTo Err_Command139_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command139_Click:
Exit Sub
Err_Command139_Click:
MsgBox Err.Description
Resume Exit_Command139_Click
End Sub
Private Sub Command141_Click()
On Error GoTo Err_Command141_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command141_Click:
Exit Sub
Err_Command141_Click:
MsgBox Err.Description
Resume Exit_Command141_Click
End Sub
Private Sub Command142_Click()
On Error GoTo Err_Command142_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command142_Click:
Exit Sub
Err_Command142_Click:
MsgBox Err.Description
Resume Exit_Command142_Click
End Sub
Private Sub Close_Form_Click()
On Error GoTo Err_Close_Form_Click
Dim stDocName As String
stDocName = "MacCloseAddNewKTR/TO"
DoCmd.RunMacro stDocName
Exit_Close_Form_Click:
Exit Sub
Err_Close_Form_Click:
MsgBox Err.Description
Resume Exit_Close_Form_Click
End Sub
Private Sub NTP_GotFocus()
MsgBox ("If this is AE Contract, change it to read as the Award Date. If CONSTRUCTION CONTRACT leave it to read 12/31/1899")
End Sub
Private Sub Contractor_Name_AfterUpdate()
Me.Dunns = Me.Contractor_Name.Column(1)
End Sub
Private Sub Text302_Click()
MsgBox ("If correct number, Please paste the this number in the Dunns field ")
End Sub
Private Sub Type_Click()
MsgBox ("If No Park Package number, please enter two **")
End Sub
Private Sub Task_Order_AfterUpdate()
Me.TaskOrder = Nz(Me.Contractor_Name.Column(2), "None")
End Sub