Browse by Tags
All Tags »
.Net (RSS)
There are new enhancements to SMTP support for .NET 4.0 - in the area of Unicode support and increased standards compliance, which is an important aspect in ensuring that legitimate emails do not get flagged as spam, as well as a few other useful features.
Read More...
I created this code snippet, which helps us to mail-disable in the Exchange Server 2003 SP2 (Native mode) – public folders. For this i tried this, i used C#.Net & CDOEXM. In this below code, i try to mail-disable the public folder named “publicfolder1”.
Read More...
The Code Pack is a source-code library that provides access to the new Windows 7 features (and some related Windows Vista features) from managed code. These features are not available to developers today in the .NET Framework. Minimum .NET Framework version
Read More...
Do you want to un-install the components of the .Net Framework 3.5 SP1? Then you need to read this article ( article by Aaron ), in which he described his experience, how to uninstall the components of the .Net Framework 3.5 SP1? He gave the clear step-by-step
Read More...
Certain technologies that predate the .NET Framework are not supported in managed code programming. These technologies include Collaboration Data Objects (CDO), Messaging Application Programming Interface (MAPI, often known as Extended MAPI), and Simple
Read More...
In this article, we are going to see how we can get Explorer & Inspector selected mail item using Outlook Object Model (OOM) & .Net and process it. '[Code Snippet : VB.Net, .Net Framework 2.0/3.5, Outlook Object Model (OOM)] ... 'Declaration part
Read More...
Microsoft Windows Server 2003 does not install Collaboration Data Objects (CDO) for NTS (CDONTS). Therefore, applications that use CDONTS do not function on a Windows Server 2003-based computer. Windows Server 2003 provides improved alternatives to CDONTS.
Read More...
My customer has CDOEX based legacy application which pulls the calendar and appointment items. Later they had merged their Exchange Server 2003 SP2 along with Exchange Server 2007 SP1 – mixed mode environment. He had an unique issue, whenever he tries
Read More...
In order to consume the managed type from COM, do the follow the steps given below: Please refer Register assemblies with COM . Generally types in an assembly (and type libraries) must be registered at design time. If an installer does not register the
Read More...
1: 'myLoop method 2: Sub myLoop() 3: 4: 'Declaration 5: Dim olApp As Outlook.Application 6: Dim olNs As Outlook. NameSpace 7: Dim olFldr As Outlook.MAPIFolder 8: Dim olItms As Outlook.Items 9: Dim olMail As Object 10: 11: Set olApp = New
Read More...
Transport agent implementation: In general the transport agent is implemented as a class that derives from either the SmtpReceiveAgent Class or the RoutingAgent Class . Every agent also needs a corresponding agent factory that derives from the SmtpReceiveAgentFactory
Read More...
I started working from Visual Basic 6, where i had used XML Parser (MS XML) to fetch the data's using WebDAV. But the same logic won't apply for you when you do with .Net applications. So, where we need to use MSXML and .Net Framework classes's for XML?
Read More...
Whenever we work with Outlook 2007 UI, we click either "Send/Receive button" or press "F9" to send and receive emails. In couple of our cases we use to do programmatically you can make use of Outlook Object Model's (OOM) SendAndReceive method. You need
Read More...
If we want to "fully trust" the assemblies, it can be done through the signed assemblies. In Visual Studio 2005, you need to select the Properties for the project and select the Signing tab. After you installed (including the newly signed
Read More...
Do you know, that using .NET Framework 3.5 SP1 hereafter we can launch our managed code from a network share. I read this wonderful blog posted by Vance Morrison , who is an Architect for .Net runtime team. Certainly i believe this will relive lot of
Read More...