|
|
Browse by Tags
All Tags » DevMsgTeam » Outlook 2003 (RSS)
Showing page 1 of 7 (68 total posts)
-
In Outlook, custom forms are typically published to a forms library so that only one copy of a form is stored on your computer. Individual items contain a Message Class field that indicates which form to use to display the data that is contained in the item. When you publish custom forms to a forms library, Microsoft Exchange Server-based computers and Outlook use considerably less resources and bandwidth because the form itself does not need to be stored within each individual item. Considerations
Posted to Le Café Central de DeVa (Weblog) by deva on December 16, 2009
Filed under: Exchange Server 2007, Exchange Server 2003, Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), Custom form, Outlook UI, DevMSGTeam, Exchange System Manager, Public Folder, Folder, Publish, Outlook Forms, Organizational Forms Library, Exchange Server, Outlook, one-off form, Outlook 2007 SP2, Outlook 2010, Exchange, Folder Forms Library, form definitions, deploy, Personal Forms Library
-
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 Visual Basic for Application (VBA) Dim omailitem As Outlook.JournalItem Dim myJournal As Outlook.Items Dim oattach As Outlook.Attachment Set myNamespace = Application.GetNamespace( "MAPI" ) Set myJournal = myNamespace.GetDefaultFolder(olFolderJournal).Items
Posted to Le Café Central de DeVa (Weblog) by deva on September 28, 2009
Filed under: Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), VBA, DevMSGTeam, Programming, development, OLE, Attachment, Outlook, Journal, Journal Programming
-
After created couple of journal items in my test lab, i thought this time i want to play around with the Journal items. Also i want to try the following programmatically: 1) iterate all the available journal items 2) Restrict the values with a (if the Lastmodificationtime > ‘23/9/2009’) specific time frame For this i used Items( index). Here index is the index number of a journal entry or a value used to match the default property of a journal entry, to return a single JournalItem object from
Posted to Le Café Central de DeVa (Weblog) by deva on September 23, 2009
Filed under: Code Snippets, Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), VBA, DevMSGTeam, development, Outlook, Restrict, Macro, Journal, Journal Programming
-
I want to share my research (that i tried to play around with Journal items) with respect to Outlook Object Model API to you. How to create the new Journal Item programmatically using Outlook Object Model? Now, we can try how we can create a new Journal Item. Code snippet: Creating a new Journal Item with Outlook Object Model & VBA 'Creates a new journal item Dim objMail As Outlook.JournalItem 'Create journal mail item Set objMail = Application.CreateItem(olJournalItem) With objMail .Body = "First
Posted to Le Café Central de DeVa (Weblog) by deva on September 23, 2009
Filed under: Code Snippets, Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), VBA, DevMSGTeam, development, Outlook, Application, Journal, Journal Programming
-
One of our customer is sending Outlook item attached using Attachments.Add with olByReference Flag on Outlook 2007. If the recipient of the email tries to open the attached item will get “Microsoft Office Oulook could not complete the operation. One or more parameters values are not valid” exception. To repro the issue we can use following sample VBA code snippet: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited
-
In this blogpost, we will try to create the Outlook Categories programmatically using Outlook Object Model API. Also we will assign the relevant colors and shortcuts to that. Whenever we try with Outlook Object Model, it’s relatively simple. '[Code snippet to create Categories] Private Sub CreateCategory() Dim objNameSpace As NameSpace Dim objCategory As Category ' Obtain a NameSpace object reference Set objNameSpace = Application.GetNamespace( "MAPI" ) 'Add the Category, set its
Posted to Le Café Central de DeVa (Weblog) by deva on June 23, 2009
Filed under: Code Snippets, Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), VBScript, VBA, DevMSGTeam, development, color, Category, samples, Outlook Categories, shortcutkey
-
Outlook 2003 and Exchange Server 2003 goes into extended Support from 4/14/2009 Exchange Server 2003 goes into Extended Support on 4/14/2009. http://support.microsoft.com/lifecycle/?LN=en-us&p1=1773&x=11&y=9 Outlook 2003 goes into Extended Support on 4/14/2009. http://support.microsoft.com/lifecycle/?p1=2520 What is the difference between Mainstream Support, Extended Support, and online self-help support? Support provided Mainstream Support phase Extended Support phase Paid support
-
Hi, Please find the following code snippet shows how we can modify/edit/add more or in-appropriate CSS/HTML tags available in the Outlook e-mail’s HTMLBody using Outlook Object Model: '[Code Snippet - Outlook Object Model '[How to modify Outlook e-mail's inappropriate CSS/HTML tags from its HTML Body ... 'Definition Dim str As String Dim str1 As String Dim omailitem As Outlook.MailItem Dim oattach As Outlook.Attachment Dim ofolder As Outlook.Folder 'str1 stands for CSS/HTML tag that needs
Posted to Le Café Central de DeVa (Weblog) by deva on May 11, 2009
Filed under: Code Snippets, Outlook 2007, Outlook 2003, Outlook Programming, Outlook Object Model (OOM), VBA, DevMSGTeam, development, Outlook, HTMLBodyPart, HTMLBody, tag
-
If you would like to remove all of the Personal Folders file .PSTs attached to the Outlook Mailbox profile then we can use RemoveStore Method. Here is a sample VBScript to perform the job for us: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being
-
I have recently worked out a VBScript to list delegate of the Outlook Mailbox using CDO 1.2.1 via VBScript and thought of share it with you all, here is the sample code: NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being demonstrated and the tools
Posted to Brijs Blogging... Looking Beyond the Obvious (Weblog) by brijs on May 4, 2009
Filed under: DevMsgTeam, How to, Outlook 2007, Exchange Server 2003, Outlook 2003, Exchange Server 2007, VBA, VBScript, MAPI, Delegates, CDO 1.2.1
1 ...
|
|
|