How do i start an application from within a task in Outlook

A

A. Lewis Jones

Specifically, I want to start Access using, say, an icon within a task in
Outlook. The system will not let me because of concerns about security. I
have searched help, but cannot find how to use VBA, or anything else, to
start Access, let alone any other application, from the window of the task.
 
M

Michael Bauer [MVP - Outlook]

This should do it:

Private o As Object
Sub test()
Set o = CreateObject("access.application")
o.Visible = True
End Sub


--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Keep your Outlook categories organized!
http://www.shareit.com/product.html?productid=300120654&languageid=1
(German: http://www.VBOffice.net/product.html?pub=6)

Am Tue, 20 Feb 2007 16:38:15 -0800 schrieb A. Lewis Jones:
Specifically, I want to start Access using, say, an icon within a task in
Outlook. The system will not let me because of concerns about security. I
have searched help, but cannot find how to use VBA, or anything else, to
start Access, let alone any other application, from the window of the
task.
 
Top