VB6 (SP5) & Outlook / Office 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I currently have a third party peice of software that picks up text files and uses outlook to email them to our clients. this used to work fine, however since installing Office 2003 including outlook 2003 i seem to be having a few problems with the security and attachments. Every time the application tries to push a mail to outlook I get a security dialog box displayed. Also the text files are not being attached, only the full Path File name is displayed in the body of the email.

Does anybody know of any 'example' code to look at as i am thinking of trying to incorprate it fully into our inhouse systems.

any help would be appricated
 
Look into Redemption to avoid the security prompts
(www.dimastr.com/redemption) if your code isn't running in the Outlook
VBA session or in a trusted Outlook COM addin. If running in those
places then the code will be automatically trusted unless you are
using CDO 1.21 code and if all Outlook objects are derived from the
intrinsic VBA Application object or from the Application object passed
in the COM addin's On_Connection event.




Peter Newman said:
I currently have a third party peice of software that picks up text
files and uses outlook to email them to our clients. this used to work
fine, however since installing Office 2003 including outlook 2003 i
seem to be having a few problems with the security and attachments.
Every time the application tries to push a mail to outlook I get a
security dialog box displayed. Also the text files are not being
attached, only the full Path File name is displayed in the body of the
email.
Does anybody know of any 'example' code to look at as i am thinking
of trying to incorprate it fully into our inhouse systems.
 
Back
Top