View Single Post
  #5  
Old February 3rd 07, 04:38 AM posted to microsoft.public.outlook.program_vba
Blogd_Node
external usenet poster
 
Posts: 7
Default Creating a task in Outlook from Access

SOLVED -ANSWER- FIXED -Found -solution
and various other keywords :-)

Hi Ken,

I used REGMON to check registry calls.
Instead of "outlook.application" which was failing,
the call should be to "outlook.application.11"
(HKCR\Outlook.Application.11)

Changing --------------------------------
Set objOL = GetObject(, "Outlook.Application")
and
Set objOL = CreateObject("Outlook.application")

TO---------------------------------------
Set objOL = GetObject(, "Outlook.Application.11")
and
Set objOL = CreateObject("Outlook.application.11")

All now works !
:-)

Now, anyone like to explain why ?

Many thanks

David

=================================================


"Ken Slovak - [MVP - Outlook]" wrote in message
...
No, I'd look for anything that might be running a script stopper, those
are the classic symptoms.

Norton can be as hard as a virus to disable, and that would be my #1
suspect in any case. Make sure it really is disabled and that the script
stopper in it isn't running.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Blogd_Node" wrote in message
u...
Hi Ken,

Thanks for the reply.
objOL is nothing.
Disabled NAV and ZoneAlarm, but no difference...

?? Any further clues ??

Thanks -
David




Ads