Hello...
Can someone please help. I have a frame within a user form that contains 6 checkboxes. The user may select more than one checkbox.
I am trying to send the caption of the selected checkbox(es) to the body of an email. I wrote the code below but it returned the same one twice (see the bolded portion).
Does anyone know I can achieve this? Thanks in advance.
Can someone please help. I have a frame within a user form that contains 6 checkboxes. The user may select more than one checkbox.
I am trying to send the caption of the selected checkbox(es) to the body of an email. I wrote the code below but it returned the same one twice (see the bolded portion).
Does anyone know I can achieve this? Thanks in advance.
Code:
"<br><br>" & _ "<b>" & Me.lblNewExist & ": " & "</b>" & Me.frameNewExist.ActiveControl.Caption & _
"<br><br>" & _
[B] "<b>" & Me.frameDealType.Caption & ": " & "</b>" & Me.frameDealType.ActiveControl.Caption & _[/B]
[B] "<br><br>"[/B]
[B] strBody = strBody & "<b>" & Me.frameDealType.Caption & ": " & "</b>" & Me.frameDealType.ActiveControl.Caption & _[/B]
[B] "<br><br>" & _[/B]
"<b>" & Me.frameDeal.Caption & ": " & "</b>" & Me.frameDeal.ActiveControl.Text & " - " & Me.frameRecDel.ActiveControl.Caption & _
"<br><br>" & _