Home All Groups Group Topic Archive Search About
Author
24 Oct 2006 10:36 PM
H. Dederichs
Hello NG,

I would like to read and write Outlook PST-Files with my VB.NET application
natively.
Is there anyone who can help me with this issue? Since PST-Files are "also"
Databases, aren't they?
Maybe there ist a way to do this with an Active Sync API if existing?
Hints with sample are highly appreciated.

B.T.W.
Is there an option to prevent the dialog which say that there is an
application trying to send mails with outlook? I know that the .NET
Frameworks contains a class which is able to send SMTP-Mails, but there not
appearing within Outlook.

Thanks
H. Dederichs

Author
25 Oct 2006 4:58 AM
Mike C#
Try Googling MAPI.  Here's an example of a .NET wrapper for a MAPI class
originally written in C:  http://www.codeproject.com/useritems/VBMAPIEx.asp

Here's another one with source code that might be helpful:
http://www.codeproject.com/cs/internet/simplemapidotnet.asp


Show quoteHide quote
"H. Dederichs" <Howie Dederichs@community.nospam> wrote in message
news:eQIqIz79GHA.4708@TK2MSFTNGP05.phx.gbl...
> Hello NG,
>
> I would like to read and write Outlook PST-Files with my VB.NET
> application natively.
> Is there anyone who can help me with this issue? Since PST-Files are
> "also" Databases, aren't they?
> Maybe there ist a way to do this with an Active Sync API if existing?
> Hints with sample are highly appreciated.
>
> B.T.W.
> Is there an option to prevent the dialog which say that there is an
> application trying to send mails with outlook? I know that the .NET
> Frameworks contains a class which is able to send SMTP-Mails, but there
> not appearing within Outlook.
>
> Thanks
> H. Dederichs
>
Author
25 Oct 2006 5:52 PM
H. Dederichs
Hallo Mike,

thank you for your hint. It was a good starting point.
I also found Outlook Redemption today which is also good for, esoecially
since it covers nearly the complet MAPI function.

Regards
Herbert Dederichs

Show quoteHide quote
"Mike C#" <x**@xyz.com> schrieb im Newsbeitrag
news:baC%g.350$uj6.77@newsfe11.lga...
> Try Googling MAPI.  Here's an example of a .NET wrapper for a MAPI class
> originally written in C:
> http://www.codeproject.com/useritems/VBMAPIEx.asp
>
> Here's another one with source code that might be helpful:
> http://www.codeproject.com/cs/internet/simplemapidotnet.asp
>
>
> "H. Dederichs" <Howie Dederichs@community.nospam> wrote in message
> news:eQIqIz79GHA.4708@TK2MSFTNGP05.phx.gbl...
>> Hello NG,
>>
>> I would like to read and write Outlook PST-Files with my VB.NET
>> application natively.
>> Is there anyone who can help me with this issue? Since PST-Files are
>> "also" Databases, aren't they?
>> Maybe there ist a way to do this with an Active Sync API if existing?
>> Hints with sample are highly appreciated.
>>
>> B.T.W.
>> Is there an option to prevent the dialog which say that there is an
>> application trying to send mails with outlook? I know that the .NET
>> Frameworks contains a class which is able to send SMTP-Mails, but there
>> not appearing within Outlook.
>>
>> Thanks
>> H. Dederichs
>>
>
>
>
Author
25 Oct 2006 9:57 AM
Walter Wang [MSFT]
Hi,

So far the outlook PST file format are only understood by Outlook.
Therefore you'll have to use Outlook Automation to access it. In VB.NET,
you can use COM interop to access Outlook Object Model:

      Dim oApp As Application = New ApplicationClass
      Dim oStore As MAPIFolder = Nothing
      Dim oNS As NameSpace = oApp.GetNamespace("MAPI")
      oNS.Logon("", "", True, True)
      oApp.Session.AddStore("f:\data\temp.pst")
      Dim oneStore As MAPIFolder
      For Each oneStore In oNS.Folders
            If (oneStore.Name.ToString Is "Personal Folders") Then
                  oStore = oneStore
                  Exit For
            End If
      Next

As for the security dialog, you can refer to following KB on how to
configure it:

#Administrator information about e-mail security features
http://support.microsoft.com/kb/290499

However, you will need to work in Exchange Server environment to apply this
method.

Regarding .NET Framework 2.0 SMTP class, it's not using MAPI, so its sent
mail will not shown in outlook.

Sincerely,
Walter Wang (waw***@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Author
25 Oct 2006 2:48 PM
Leon Mayne
"H. Dederichs" wrote:
> Is there an option to prevent the dialog which say that there is an
> application trying to send mails with outlook? I know that the .NET
> Frameworks contains a class which is able to send SMTP-Mails, but there not
> appearing within Outlook.

You could use Outlook Redemption:
http://www.dimastr.com/redemption/
Author
25 Oct 2006 6:02 PM
H. Dederichs
Hello Leon,

I also found Outlook Redemption today. Seems to be the thing I was looking
for.
Do you know how to send Email without starting Outlook via Automation (only
RDO)? Documentation and samples are not very detailed on the site.

Thanks
Herbert Dederichs

Show quoteHide quote
"Leon Mayne" <LeonMa***@discussions.microsoft.com> schrieb im Newsbeitrag
news:03AC9FD7-1A88-43F0-8F73-14345C71E70A@microsoft.com...
> "H. Dederichs" wrote:
>> Is there an option to prevent the dialog which say that there is an
>> application trying to send mails with outlook? I know that the .NET
>> Frameworks contains a class which is able to send SMTP-Mails, but there
>> not
>> appearing within Outlook.
>
> You could use Outlook Redemption:
> http://www.dimastr.com/redemption/
>
Author
25 Oct 2006 7:21 PM
Leon Mayne
"H. Dederichs" wrote:
> Do you know how to send Email without starting Outlook via Automation (only
> RDO)? Documentation and samples are not very detailed on the site.

Not sure, I'm afraid. I've only used redemption from either a VB6 COM addin
or a macro, and so Outlook is already loaded for both situations.

If you want to send stuff completely outside of Outlook then I'd look
elsewhere. There are lots of third party components that will email
regardless of Outlook being installed.
Author
7 Nov 2006 3:52 PM
dmitrylin
"""Leon Mayne ?????(?):
"""
> "H. Dederichs" wrote:
> > Do you know how to send Email without starting Outlook via Automation (only
> > RDO)? Documentation and samples are not very detailed on the site.
>
> Not sure, I'm afraid. I've only used redemption from either a VB6 COM addin
> or a macro, and so Outlook is already loaded for both situations.
>
> If you want to send stuff completely outside of Outlook then I'd look
> elsewhere. There are lots of third party components that will email
> regardless of Outlook being installed.


http://pstwalker.narod.ru/
Author
14 Mar 2007 4:46 PM
Calz
Thats an Exe that does wht i wanna do.. Can I get the Source Code Please..

EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com
Author
14 Mar 2007 9:19 PM
Mythran
"Calz" wrote in message news:2007314114657kala.parameswaran@gmail.com...
> Thats an Exe that does wht i wanna do.. Can I get the Source Code Please..
>
> EggHeadCafe.com - .NET Developer Portal of Choice
> http://www.eggheadcafe.com

???

Mythran