VB code to access to outlook databases

T

TTT

I'm new to VB program and was wondering if any one has
some code snippets that shows how one access outlook data
bases. I'm using outlook 2000

One of the data bases is the blocked sender list.

The other is the subject line words, normaly accessable in
the rule wizard

and additional one is the rule data base, and the abality
to add to this database

I would like to read and write to each database under VB
program control.


Any Help would be appreciated


TTT
 
K

Ken Slovak - [MVP - Outlook]

The junk mail list is kept in a text file but that doesn't do any good for
changing it since the actual list that Outlook uses is stored as an
undocumented binary property in the mailbox or PST file. The rules are also
undocumented binaries, the only documented way to work with them is using
the Rule.DLL that can be used in a limited way to create new rules.

For more information on that and other Outlook coding information and issues
see www.outlookcode.com
 
Top