My final objective is:
I am attempting to place a link into an email which will open a database form to a specific record. The email receiver would click the link, the form would open and then perform some action on the record.
I can create an email and insert a hyperlink but cannot get the hyperlink to run the macro. I am not sure the macro is the best way to go but I haven't made it far enough to test.
I can get my outlook link to open a database, I used a very simple example as a proof of concept.
I created a link in outlook of
this opens northwinds just fine
Now I attempt to add the macro using the sample from
I edit the email link with
C:\northwind.mdb /x macrun
with out any quotes and resend.
When I open the new email
When I click on the hyperlink with the macro I receive the message
I have tried many examples but can never get a macro or code to execute when I use a link.
I have been searching but not found an answer. Has anyone tried this before?
For the short term I am stuck with 2003 as we are just starting to roll out 2007. (I know, why not 2010)
thanks for any insight.
I am attempting to place a link into an email which will open a database form to a specific record. The email receiver would click the link, the form would open and then perform some action on the record.
I can create an email and insert a hyperlink but cannot get the hyperlink to run the macro. I am not sure the macro is the best way to go but I haven't made it far enough to test.
I can get my outlook link to open a database, I used a very simple example as a proof of concept.
I created a link in outlook of
Code:
Outlook hyperlink, no quotes, just text
C:\northwind.mdb
Code:
If I hover over the hyperlink in outlook I see
file///c:/northwind.mdb
Now I attempt to add the macro using the sample from
I edit the email link with
C:\northwind.mdb /x macrun
with out any quotes and resend.
When I open the new email
Code:
If I hover over the hyperlink in outlook I see
file///c:/northwind.mdb%20/x%20macrun
When I click on the hyperlink with the macro I receive the message
Code:
Cannot Find File
'C:\northwind.mdb \x macrun'
make sure the path or internet address is correct.
I have tried many examples but can never get a macro or code to execute when I use a link.
I have been searching but not found an answer. Has anyone tried this before?
For the short term I am stuck with 2003 as we are just starting to roll out 2007. (I know, why not 2010)
thanks for any insight.