Forum: Outlook and VBA
July 20th 06, 06:42 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 4
Views: 1,062
Display Outlook Options
Yes, the same form can almost be reused in an initial configuration window as
the one in tools, options.
I'll take a look at it. Thanks for the response, it's always nice to know
when something...
|
Forum: Outlook and VBA
July 19th 06, 06:33 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 4
Views: 1,062
Display Outlook Options
Ok.
So if I need the user to set some "initial" parameters when the addin is
installed, and run the first time - what would be best practice there?
The only (reasonable) options i can figure out...
|
Forum: Outlook and VBA
July 18th 06, 01:27 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 4
Views: 1,062
Display Outlook Options
Hi
Does anyone have a code snippet i can use to programmatically open the
tools-options dialog and if really good select a specific tab.
I have coded my solution with VSTO C#, but any code will...
|
Forum: Outlook and VBA
July 7th 06, 12:13 PM Posted to microsoft.public.outlook.program_vba
|
Replies: 7
Views: 3,403
Outlook: Mark a mailitem as complete
Now it seems to work. I have added some more properties, and it seems to work
fine now.
Heres the C# code i use to mark the mailitem complete.
---------- CODE BEGIN ------------
private void...
|
Forum: Outlook and VBA
July 7th 06, 06:43 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 7
Views: 3,403
Outlook: Mark a mailitem as complete
If I understand VB6 correct, empty is what in VB.NET is Nothing, equal to
'null' in C#.
But - I can't set the FlagIcon to null in C# because it's a value property
and not an object.
Any other...
|
Forum: Outlook and VBA
July 7th 06, 06:39 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 7
Views: 3,403
Outlook: Mark a mailitem as complete
I have almost the same code..
What would "empty" translate to in .NET? I set the flagIcon = olNoFlagIcon.
That might be the difference.
Otherwise i do the same, except for the...
|
Forum: Outlook and VBA
July 6th 06, 07:19 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 7
Views: 3,403
Outlook: Mark a mailitem as complete
I've done that. But that just makes the flag disappear. (as the name kind of
says)
And appearently you can't mark a mail item complete without a flag.
At least thats my...
|
Forum: Outlook and VBA
July 4th 06, 06:35 AM Posted to microsoft.public.outlook.program_vba
|
Replies: 7
Views: 3,403
Outlook: Mark a mailitem as complete
Hi
I have a problem marking a mailitem as complete, and having the 'V' icon
appear in the Outlook UI. Im coding a VSTO Addin (C#).
What i am doing is in short this:
1. When outlook receives a...
|