Hi,
I am generating a email in VBA and having it display so that the user can populate the To: name. What code do I use to force the email to display on top of access so that it is displayed to the user and not hidden behind. Here is my code that displays the email:
For Each objOutlookRecip In .Recipients
objOutlookRecip.Resolve
Next
' Should we display the message before sending?
If DisplayMsg Then
.Display
Else
.Save
.Display 'to display email only
'.Send
End If
End With
Thanks!
I am generating a email in VBA and having it display so that the user can populate the To: name. What code do I use to force the email to display on top of access so that it is displayed to the user and not hidden behind. Here is my code that displays the email:
For Each objOutlookRecip In .Recipients
objOutlookRecip.Resolve
Next
' Should we display the message before sending?
If DisplayMsg Then
.Display
Else
.Save
.Display 'to display email only
'.Send
End If
End With
Thanks!