C
Courgette
Hi,
Here is something I realy don't understand :
I use the Application_ItemSend with this code :
Private Sub Application_ItemSend(...)
MsgBox "Coucou"
End Sub
if call when sending a new message, the MessageBox won't appear in
front of my new message window but in front of the Outlook main
window... So that the user can't see it. It goes like if this msgbox
was a Outlook main window Modal Form.
if I use
Private Sub Application_ItemSend(...)
FrmUser1.Show vbModal
End Sub
there is the same problem...
Note that this code works on some of my computers but not all of them.
Can anybody help me ?
Here is something I realy don't understand :
I use the Application_ItemSend with this code :
Private Sub Application_ItemSend(...)
MsgBox "Coucou"
End Sub
if call when sending a new message, the MessageBox won't appear in
front of my new message window but in front of the Outlook main
window... So that the user can't see it. It goes like if this msgbox
was a Outlook main window Modal Form.
if I use
Private Sub Application_ItemSend(...)
FrmUser1.Show vbModal
End Sub
there is the same problem...
Note that this code works on some of my computers but not all of them.
Can anybody help me ?