Forum: Outlook and VBA
March 12th 10, 02:45 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 606
Views on multiple folders
Views are stored as hidden items in the root of a user's Mailbox. I wouldn't
worry too much about having hundreds of them - there should be a neglible
impact on storage and performance.
--
Eric...
|
Forum: Outlook and VBA
January 15th 10, 08:59 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 875
|
Forum: Outlook and VBA
September 28th 09, 03:33 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 533
Usage of InternetOpen from Outlook VB Add-in
This wouldn't be an issue with Outlook in any way. Your dealing with factors
like web browsers and OS performance/configuration that's beyond Outlook's
control.
--
Eric Legault - Outlook MVP,...
|
Forum: Outlook and VBA
September 28th 09, 03:30 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 499
|
Forum: Outlook and VBA
September 4th 09, 07:37 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 600
Push a single contact through to excel
Sure, all of this is definitely possible.
For starters, there's a code sample here that can get you started:
http://www.helenfeddema.com/CodeSamples.htm#Code41
Basically, you need to familiarize...
|
Forum: Outlook and VBA
September 2nd 09, 03:56 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 3
Views: 913
|
Forum: Outlook and VBA
September 2nd 09, 05:10 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 3
Views: 1,268
For Each loop not getting all Email Items
You're not the only one who has encountered this issue - nearly every Outlook
developer comes across this at some point!
The problem is you are deleting e-mails, thus altering the population of the...
|
Forum: Outlook and VBA
September 2nd 09, 03:34 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 1,105
|
Forum: Outlook and VBA
September 2nd 09, 03:29 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 724
|
Forum: Outlook and VBA
September 1st 09, 06:32 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 992
Junk Mail Controls
You can use the SendKeys method to automate those keystrokes:
http://msdn.microsoft.com/en-us/library/8c6yea83(VS.85).aspx
However, you'll probably be better off just customizing your menu bar to...
|
Forum: Outlook and VBA
August 18th 09, 06:18 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 1,485
|
Forum: Outlook - Using Forms
April 3rd 09, 07:49 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 3
Views: 516
|
Forum: Outlook and VBA
April 3rd 09, 07:35 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 1
Views: 443
How do I set up macro for adobe
This isn't really a programming question. It sounds like you just want the
Adobe Reader application to be the registered file handler for .tif documents
- something you need to configure in...
|
Forum: Outlook - Using Forms
November 20th 08, 04:17 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 3
Views: 373
Multiple session per meeting?
If there are different locations and times for these meetings, wouldn't it
make more sense to store them as separate Appointment items?
Your requirements are very thin, but Outlook is capable of...
|
Forum: Outlook - Using Forms
November 20th 08, 04:15 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 2
Views: 332
|
Forum: Outlook - Using Forms
November 20th 08, 04:09 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 6
Views: 692
|
Forum: Outlook - Using Forms
November 19th 08, 05:32 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 6
Views: 692
|
Forum: Outlook - Using Forms
November 19th 08, 05:26 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 606
Create Outlook Form with two approval Levels
Hi Steve. That's a very, very general question. Can you be more specific
please?
--
Eric Legault [MVP - Outlook]
MCDBA, MCTS (Messaging & Collaboration, SharePoint Infrastructure, MOSS 2007
&...
|
Forum: Outlook - Using Forms
November 19th 08, 05:24 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 2
Views: 451
|
Forum: Outlook - Using Forms
November 19th 08, 05:18 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 4
Views: 409
|
Forum: Outlook and VBA
October 1st 08, 04:54 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 13
Views: 1,515
|
Forum: Outlook and VBA
September 22nd 08, 04:52 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 2
Views: 1,164
select ALL option
You don't necessarily have to call .Display. Try accessing the value of the
..Body (or even .HTMLBody) property and using that instead of the
clipboard/SendKeys.
--
Eric Legault [MVP -...
|
Forum: Outlook - Using Forms
September 22nd 08, 04:47 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 585
|
Forum: Outlook and VBA
September 18th 08, 12:33 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 4
Views: 1,294
Custom Task Form
This is Outlook code, so it's going to create an Outlook Task form, not an
Access form.
Even customized Task forms use the same properties and methods as the
TaskItem object. So yes - assign it...
|
Forum: Outlook and VBA
September 17th 08, 08:03 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 4
Views: 1,294
Custom Task Form
You need to specify the class name of the custom form with the
MAPIFolder.Items.Add method for the folder where you want to create it:
Sub AddForm()
Dim myOlApp As New outlook.Application
Dim...
|