Welcome to MSDN Blogs Sign in | Join | Help

News

  • <font color="WHITE">Le Café Central de DeVa</font> DeVa rocks

    Bookmark and Share Bookmark and Share

    I changed the way of blogging, re-designed along with Windows 7 launch!!
    Additionally added feature, so that you can try to view the page in your language (any one of them)

    Deva Gnanam

    உங்கள் பேட்ஜை உருவாக்குங்கள்
    Translate into your language

    My XBOX Live

    XBox Live

    Disclaimer:

    This weblog/blog is solely my opinion.The information in this weblog/blog is provided "AS IS" with no warranties, and confers no rights. This weblog/blog does not represent the thoughts, intentions, plans or strategies of my employer. Inappropriate comments will be deleted at the authors discretion.

    Use of included script samples are subject to the terms specified in theTerms of Use

    .

    Privacy Statement:
    I do not collect personal data associated with comments posted to this site.


    Comments:
    We would like to hear your comments, reviews & valuable constructive opinion....


    Site Statistics
    Locations of visitors to this page





    Make a difference


    Subscription offer


    Developer resources



    Students free software

    Try & Test Drive Online

    More about Windows 7



    Experiences

    Go Green!!




Browse by Tags

All Tags » Programming   (RSS)
Playing with Journal Items &amp; Outlook Object Model # 3
Reading Journal attachments using Outlook Object Model: This time, i tried to read all the email and their attachments using Outlook Object Model. I used the following code snippet to do this. 'Code Snippet : How to retrieve Outlook attachments using Read More...
KB: Why OWA or EWS application doesn’t show yearly recurring appointment?
While working with one of my customer we noticed that the yearly recurring appointment doesn’t show in Outlook Web Access or Exchange Web Services(EWS) application. Customer created a monthly or yearly recurring appointment. He set the request to occur Read More...
WebDAV : How to retrieve list of folders from Exchange Server using Search method (WebDAV) programmatically ?
using System; using System.Net; using System.IO; using System.Text; using System.Xml;   namespace SampleCode { class GetFolders { static void Main( string [] args) { // Variables. System.Net.HttpWebRequest Request; System.Net.WebResponse Response; Read More...
Outlook Object Model : Creating simple tasks programmatically using OOM & VBA?
In this post, we will create the simple Outlook tasks programmatically using Outlook Object Model API & VBA. We do this by using the code snippet: '[Code Snippet for creating Simple Tasks using Outlook Object Model API & VBA]   Private Sub Read More...
.Net Troubleshooting : How to uninstall the components of the .NET Framework 3.5 SP1?
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...
Troubleshooting : EWS request throws “The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel” ?
One of my customer updated that whenever they try to make the remote Exchange Web Service (EWS) call from his C#.Net 2008 application (VS.Net 2008 - .Net Framework 3.x), he gets the following error: The underlying connection was closed: Could not establish Read More...
Part # 2 - Using C#.Net & Exchange Web Service (EWS) : How to create and send e-mail messages?
In this we will see how to create & send e-mail messages using Exchange Web Service (EWS). It’s pretty simple with EWS to do. // Create the Exchange Service Binding ExchangeServiceBinding esb = new ExchangeServiceBinding(); // Add its relevant Credentials Read More...
How to get Explorer & Inspector selected mail item using Outlook Object Model (OOM) & .Net?
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...
Outlook 2007 MAPI reference : Required properties for all the messages
Please find the following table which described in the Outlook 2007 MAPI reference talks about properties that clients can expect to set or see supported on messages of all classes. Property Description PR_CREATION_TIME PidTagCreationTime Canonical Property Read More...
Exchange Server 2007 : Getting Mailbox statistics using C#.Net &amp; Exchange Powershell
In this session, we will have a look about how to get the mailbox statistics information using from Exchange Server 2007 SP1 using C#.Net & Exchange Powershell. I tried the following code to get the mailbox statistics… 1: .... 2: //Create Runspaceconfiguraiton Read More...
.Net & COM: How to consume managed type from COM?
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...
Debugging functions : How to debug an application without any debugger?
Using OutputDebugString If the application has no debugger, the system debugger displays the string if the filter mask allows it. (Note that this function calls the DbgPrint function to display the string. For details on how the filter mask controls what Read More...
Exchange Server: How to retrieve appointments using C# & WebDAV?
Code Snippet (C#): //Declaration part string strExchSvrName = "" ; string strMailbox = "" ; string strCalendarUri = "" ; string strDomain = "" ; string strUserName = "" ; string strPassword = "" ; System.Net.HttpWebRequest WebDavRequest = null ; System.Net.HttpWebResponse Read More...
How to authenticate the Inbox in Microsoft Exchange Server 2003 with forms-based authentication enabled?
Please find the Code Snippet Access Exchange Server 2003 using WebDAV in your Web application per KB : 1: 'Declaration Section 2: Dim strServerName as String = "Server Name" 'TODO: Change to your environment 3: Dim strDomain as String = "Domain Name" Read More...
Outlook programming : Looping individual mails inside the Inbox
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...
More Posts Next page »
Page view tracker