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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top