|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Outlook PST FilesHello 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 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 > 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 >> > > > 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. "H. Dederichs" wrote: You could use Outlook Redemption:> 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. http://www.dimastr.com/redemption/ 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/ > "H. Dederichs" wrote: Not sure, I'm afraid. I've only used redemption from either a VB6 COM addin > Do you know how to send Email without starting Outlook via Automation (only > RDO)? Documentation and samples are not very detailed on the site. 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. """Leon Mayne ?????(?):
""" > "H. Dederichs" wrote: http://pstwalker.narod.ru/> > 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. 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 "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
Looping through files to compare
Systray Icon Regular Expressions .NET Issue with VB6 using a .NET DLL on one PC with Windows 2000 Server how to round number to custom step (0.25, 20, 100...) SQL staments with ADO in Excell Determine what current drive letter is? Collection Question audio functions in Winmm.dll Quick SQLclient Data Access ASPX / VB .NET |
|||||||||||||||||||||||