A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 25 of 250
Search took 4.56 seconds.
Search: Posts made by: Ken Slovak - [MVP - Outlook]
Forum: Outlook and VBA June 3rd 10, 07:01 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 2,599
Changing the 'Mark item as read when selection changes' at runtime

There's no way to do what you want. Outlook will read those settings only at
startup and from then on will use cached settings in memory. Even if the
settings are changed it will write them out but...
Forum: Outlook and VBA June 2nd 10, 06:36 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 1,712
How to deploy Outlook Shared add-in

That sounds like the Office and possibly the Outlook PIA's aren't installed
in the GAC. Do you set a project prerequisite for that?

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author:...
Forum: Outlook and VBA June 1st 10, 02:32 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 1,213
Opening a web URL that points to PDF file...

I have no idea about automating Adobe Acrobat so I can't answer that. I
still don't know exactly what you're doing but there isn't a lot of time to
find out as this newsgroup is being closed by MS...
Forum: Outlook and VBA May 28th 10, 02:46 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 923
outlook ComAddin deactivated

If your addins crashes Outlook, or gets blamed for crashing Outlook there's
nothing you can do to prevent it from being disabled.

There are cases where some other addin or automation code might...
Forum: Outlook and VBA May 28th 10, 02:39 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 874
Start my Outlook from a server

Not only can Outlook only be run locally on that machine, but Outlook is not
suitable for running unattended or for unattended automation. Outlook shows
modal warnings and errors that require UI...
Forum: Outlook and VBA May 27th 10, 02:45 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 246
item_send event

You can create wrapper classes in VBA just as you can in VB or C#. You can
add instances of the classes to a collection in VBA to keep them alive. Just
create a new class and add your WithEvents...
Forum: Outlook and VBA May 26th 10, 02:27 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 246
item_send event

Send To uses Simple MAPI to open or send Outlook items. The Inspectors
opened as a result of a Simple MAPI command do not fire the NewInspector()
event, and are opened modally. They do add an...
Forum: Outlook and VBA May 24th 10, 07:19 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 1,213
Opening a web URL that points to PDF file...

As you never mentioned anything about emails, searching email bodies or
anything else related to Outlook, how is anyone to guess what your intended
question?

In your first post you said you had an...
Forum: Outlook and VBA May 24th 10, 07:12 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 1,607
Exchange Client Extensions in Outlook 2010?

Gone. The deprecation has been announced repeatedly since before the release
of Outlook 2007.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook...
Forum: Outlook - Using Forms May 24th 10, 07:10 PM Posted to microsoft.public.outlook.program_forms
Replies: 5
Views: 3,326
Your server administrator has limited the number of items you

If you declare an object outside the loop

Outlook.ContactItem NewCont = null;

and then instantiate instances of it within the loop you are only creating
one object. You are assigning an...
Forum: Outlook and VBA May 21st 10, 04:29 PM Posted to microsoft.public.outlook.program_vba
Replies: 10
Views: 2,321
MailItem.SaveAs not working

I'm wondering if possibly declaring TheEmail as Object rather than MailItem
would be helpful. Do you ever hit the error handler code? If you do it
could be because instantiating a MailItem object...
Forum: Outlook and VBA May 21st 10, 04:25 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 2,031
macro to include email signature

I'm not sure. Let's see what happens first if you comment out the line
myItem.Body = "body text" & myItem.Body. Do you get the signature then? If
so and the body format is HTML, then see if it...
Forum: Outlook and VBA May 21st 10, 02:42 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 848
URL in an email

If you can extract the URL from the email then you'd need to ask on an Adobe
forum as to how to automate Acrobat.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional...
Forum: Outlook and VBA May 21st 10, 02:41 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 933
Outlook Version

Some of the equivalencies you can find at www.slipstick.com. For each
version you'd parse the version (12 for Outlook 2007, 11 for 2003, 14 for
2010, etc.) plus the minor, revision and build parts....
Forum: Outlook - Using Forms May 21st 10, 02:38 PM Posted to microsoft.public.outlook.program_forms
Replies: 5
Views: 3,326
Your server administrator has limited the number of items you

Yes, if you don't follow the advice you've seen from me and other posters
you are missing something. If you follow the advice you won't have those
problems.

Declaring the NewCont object outside...
Forum: Add-ins for Outlook May 21st 10, 02:32 PM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 2,293
add new panel to email editing window

What version of Outlook? If this is 2007 or later you can use a Custom Task
Pane. But that would be visible or not, it wouldn't slide.

You can use the Add-In Express framework to add additional...
Forum: Outlook and VBA May 20th 10, 07:33 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 2,031
macro to include email signature

Call Display() before you add anything to the body. The signature is added
after the item is opened.

If you want to have your addition before any signature then after you call
Display() use code...
Forum: Outlook and VBA May 20th 10, 07:31 PM Posted to microsoft.public.outlook.program_vba
Replies: 3
Views: 1,772
Forward Email and Insert Sender's Email address in body

Assuming only 1 item is selected:
Application.ActiveExplorer.Selection.Item(1) instead of the
Inspector.CurrentItem.

What Outlook version are you using? If you are using Outlook 2007 or later
you...
Forum: Outlook and VBA May 20th 10, 03:06 PM Posted to microsoft.public.outlook.program_vba
Replies: 3
Views: 1,772
Forward Email and Insert Sender's Email address in body

One post would have been enough.

You want the sender's email address from the ThisItem object?

Use ThisItem.SenderEmailAddress for that. Be aware though that if your
sender is an Exchange user in...
Forum: Outlook - Using Forms May 20th 10, 03:03 PM Posted to microsoft.public.outlook.program_forms
Replies: 5
Views: 3,326
Your server administrator has limited the number of items you can

Declare NewCont outside the loop so you aren't creating an instance of it
each pass through the loop. Set both contact objects to null, if that's not
enough to prevent the error then call...
Forum: Outlook and VBA May 18th 10, 08:55 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 778
ItemAdd event not functioning - not triggering.

First things first. If this is running in the Outlook VBA project use the
intrinsic, trusted Application object. Don't use New.

If the code is in a class then are you instantiating an instance of...
Forum: Outlook and VBA May 18th 10, 05:43 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 699
Automatically save attatchment with a different extension

Sure, you can do that. Look at www.outlookcode.com for examples in handlers
for ItemAdd() for the Inbox or NewMailEx(). You can add your code to save
the attachments in one of those event...
Forum: Outlook and VBA May 18th 10, 05:41 PM Posted to microsoft.public.outlook.program_vba
Replies: 2
Views: 1,334
How to change status of a mail marked as a task (VBA)

Get the MailItem.PropertyAccessor object and use
PropertyAccessor.SetProperty("http://schemas.microsoft.com/mapi/id/{00062003-0000-0000-C000-000000000046}/81010003")
to set the value you want,...
Forum: Outlook and VBA May 18th 10, 05:38 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 1,241
Creating Tasks in Outlook 2007 with VBA

Outlook internally stores everything in UTC time and converts to local time
based on a) your Windows time zone settings in the Control Panel and b) any
Outlook time zones set in Tools, Options,...
Forum: Outlook - Using Forms May 17th 10, 03:30 PM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 873
Installation Issues with Outlook Add-In 2003

What error are you getting? Have you looked at the Fusion logs? You need to
provide more specific information and to do some detective work. For
information on typical problems and Fusion logging...
Showing results 1 to 25 of 250

 
Forum Jump

All times are GMT +1. The time now is 11:03 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2024 Outlook Banter.
The comments are property of their posters.