E
Emma
Hi there,
Can someone tell me why the following select case statement is not opening
the forms:
Private Sub Job_Type_AfterUpdate()
Select Case Form_Tbl_Master_Jobs!Job_Type
Case "New Contract"
DoCmd.GoToControl "Frame_Contract_Type"
Case "Debit Memo"
DoCmd.OpenForm "frm_Tbl_Credit_Details"
Case "Evaluation"
DoCmd.OpenForm "frm_Tbl_Evaluation_Details"
Case "Addendum"
DoCmd.OpenForm "frm_New_Addendum"
Case "Rental"
DoCmd.OpenForm "frm_Rental_Detail"
Case Else
DoCmd.GoToControl "Comments"
End Select
End Sub
Thank you!
Can someone tell me why the following select case statement is not opening
the forms:
Private Sub Job_Type_AfterUpdate()
Select Case Form_Tbl_Master_Jobs!Job_Type
Case "New Contract"
DoCmd.GoToControl "Frame_Contract_Type"
Case "Debit Memo"
DoCmd.OpenForm "frm_Tbl_Credit_Details"
Case "Evaluation"
DoCmd.OpenForm "frm_Tbl_Evaluation_Details"
Case "Addendum"
DoCmd.OpenForm "frm_New_Addendum"
Case "Rental"
DoCmd.OpenForm "frm_Rental_Detail"
Case Else
DoCmd.GoToControl "Comments"
End Select
End Sub
Thank you!