A
Anand
I saw the below mentioned solution given by Sue Mosher, Outlook MVP for one
of the issue. I am also facing the same problem but the context is different.
I am using Outlook 2000 SP3 as my email client and using the following code
to send emails thru excel VBA,
ActiveWorkbook.Route
How can I over come this issue?
Thanks.
This is your problem:
Set objOutlook = CreateObject("Outlook.Application")
To avoid security prompts, you must use the intrinsic Application object.
You can do this by changing the above statement to:
Set objOutlook = Application
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
of the issue. I am also facing the same problem but the context is different.
I am using Outlook 2000 SP3 as my email client and using the following code
to send emails thru excel VBA,
ActiveWorkbook.Route
How can I over come this issue?
Thanks.
This is your problem:
Set objOutlook = CreateObject("Outlook.Application")
To avoid security prompts, you must use the intrinsic Application object.
You can do this by changing the above statement to:
Set objOutlook = Application
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers