Hi... First, regarding my code snippet. I created an App object and hence couldn't find anything, and that was a... "duh" moment ;-) Second, I've been looking...
Again, just trying stuff... I had the thought of referencing the Excel class within Outlook. I added the MS Excel objects to Tool/Reference, then changed: Set...
I tried the following in Excel: Sub tstOutlook() Dim olApp As Outlook.Application Dim vbeCurrent As Object Set olApp = GetObject(, "Outlook.Application") Set...
My VB.NET 2003 app extracts messages from PST's and saves them to the file system, and later imports these .msg's back into a PST. I am using Redemption...
No I mean the actual Exchange mailbox. ... From: Eric Woodford To: outlook-dev@yahoogroups.com Sent: Tuesday, May 31, 2005 11:01 AM Subject: Re: Using CDO to...
Sorry, never heard of Private Folders. Still sounds like Personal Folders, but changed the Display name entry when adding to the profile. Similar to what...
Put code in the Item_Open event handler to (a) check whether Item.Sent = True and (b) if so, check property values and show/hide frames using the syntax...
You're out of luck. No events fire, at least not at the Outlook object model level. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming -...
Since the Insert | File command is disabled on received items, you will need to add a custom dialog control to the form (and a button to launch it ) to allow...
No, the Outlook object model provides no methods for encrypting or decrypting a message. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming -...
If your copy of Outlook is running, you can use a recurring task with a reminder and the Application.Reminder event to handle this. Otherwise, you will...
It's a known issue with Exchange 2000; see http://www.slipstick.com/exs/pfshare.htm#problems. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook...
You didn't say what version of Outlook or whether these contact folders are in Exchange mailboxes or .pst files. -- Sue Mosher, Outlook MVP Author of Microsoft...
Hi All I would like to enable globally enable a Public Folder as an Outlook Address Book. It's pretty easy simple how to enable the option programmatically...
Your code must run on each workstation as "show folder in AB" settings are stored locally on each machnine in a profile section. How about a logon script? ... ...
Another approach is to put the code in a folder home page, which ensures that Outlook is running under the desired profile when you run the script. You can use...
its a load of rubbish but this is what i've got so far. i have tried but i can't make any more headway. please can you help further? Sub Item_Open() Set...
Microsoft's announced at Tech Ed today that Visual Studio 2005 Tools for Office will include support for developing managed add-ins for Outlook. That should...
I have been using OutlookSpy 2.9 to drill into custom fields on a task. My goal is to write a macro to export these fields to Excel (pretty easy I thought). ...
Which like of code or the UI action produces this error? Note that Outlook cannot handle when a user selects a large number of items (>200) under Exchange and...
Oops, "which line of code". ... From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Streblechenko, Dmitry Sent: Monday, June...
thanks, i was pleasantly surprised it is on the right track. however, the problem is that the frame is showing up on the read page when nothing is entered in...
We have a number of custom forms developed in various versions of Outlook, from Outlook 2000 to Outlook 2003. Some other forms we've developed are the office...
If we configure the imap account in outlook it will initially fetch only the headers and when you select the mail it will download the body. I want to know...
I am exporting the whole task folder so I am way over 200+ records. I would say it is more like 500 task records. I haven't figured out which line is...