Hi,
I have a combo box in a subform that has three options in it (MA, OA, and RC). When either one of these options are selected I would like a message box to appear instructing the user that by choosing these options, changes need to be made elsewhere. Previously I had this set up on a combo box in the main form and it works like a charm. The page was redesigned though and that option is now part of a subform. I assumed I would be able to use the same code but it doesn't seem to be working.
Here is the code I had on a combo box in the main form before the change:
Private Sub PrimeJointSplit_Click()
If [PrimeJointSplit] = "Y" Then
MsgBox "NOTE: Selecting Yes for this option requires the use of the Mailing-Address-Formula component in Dialogue."
End If
End Sub
Here is what I thought would work for the subform (I tried this using one selection first just to see if it works... which it doesn't):
Private Sub Combo32_Click()
If [Combo32] = "MA" Then
MsgBox "NOTE: Selecting Yes for this option requires the use of the Mailing-Address-Formula component in Dialogue."
End If
End Sub
Any suggestions? I'll need this to work for all three options too (MA, OA, & RC). Thanks in advance for your help!!