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 » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Adding a Link to a word document



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 7th 07, 02:59 PM posted to microsoft.public.outlook.program_forms
Cavedwella
external usenet poster
 
Posts: 2
Default Adding a Link to a word document

Hi...

I am a complete newbie to outlook forms and I've just started playing around
with them and I'm stuck...

I have created a form for new equipment, which part way through asks if
training is required... (set up a training course Yes/No)
I would like to have a link to Training request form - which is currently a
word doc on a different network drive...

Not 100% sure how this is going to work, as after trawling through the
messages here, it would appear I need to have the a message box (body of the
email) within the form. When I tried this I couldn't get the hyperlink to
work... e.g. didn't get the blue line underneath...

Can I get a command button to do the same thing?

I am using Outlook 2003.

Anybody able to point me in the right direction please...

--
The Wheel is spinning but the hamster is dead...
Ads
  #2  
Old March 7th 07, 03:27 PM posted to microsoft.public.outlook.program_forms
Cavedwella
external usenet poster
 
Posts: 2
Default Adding a Link to a word document

I have found some code which might just do the trick...

Sub Label1_Click()
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.GetInspector.ModifiedFormPages _
("P.2").Controls("Label1").Caption
objWeb.Visible = True
End Sub

Please can someone show me how to modify it...

Thanks

--
The Wheel is still spinning, but the hamster is dead...


"Cavedwella" wrote:

Hi...

I am a complete newbie to outlook forms and I've just started playing around
with them and I'm stuck...

I have created a form for new equipment, which part way through asks if
training is required... (set up a training course Yes/No)
I would like to have a link to Training request form - which is currently a
word doc on a different network drive...

Not 100% sure how this is going to work, as after trawling through the
messages here, it would appear I need to have the a message box (body of the
email) within the form. When I tried this I couldn't get the hyperlink to
work... e.g. didn't get the blue line underneath...

Can I get a command button to do the same thing?

I am using Outlook 2003.

Anybody able to point me in the right direction please...

--
The Wheel is spinning but the hamster is dead...

  #3  
Old March 7th 07, 04:31 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Adding a Link to a word document

If you want to use that technique, simply put the file:// URL for the document you want to open as the caption for the label.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Cavedwella" wrote in message ...
I have found some code which might just do the trick...

Sub Label1_Click()
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.GetInspector.ModifiedFormPages _
("P.2").Controls("Label1").Caption
objWeb.Visible = True
End Sub

Please can someone show me how to modify it...

Thanks

--
The Wheel is still spinning, but the hamster is dead...


"Cavedwella" wrote:

Hi...

I am a complete newbie to outlook forms and I've just started playing around
with them and I'm stuck...

I have created a form for new equipment, which part way through asks if
training is required... (set up a training course Yes/No)
I would like to have a link to Training request form - which is currently a
word doc on a different network drive...

Not 100% sure how this is going to work, as after trawling through the
messages here, it would appear I need to have the a message box (body of the
email) within the form. When I tried this I couldn't get the hyperlink to
work... e.g. didn't get the blue line underneath...

Can I get a command button to do the same thing?

I am using Outlook 2003.

Anybody able to point me in the right direction please...

--
The Wheel is spinning but the hamster is dead...

  #4  
Old March 22nd 07, 04:46 PM posted to microsoft.public.outlook.program_forms
indygirl
external usenet poster
 
Posts: 1
Default Adding a Link to a word document

I am in need of the same thing. I need to add a hpyerlink to open a word
document on our server but adding the URL to the caption of the button does
not seem to work. Help!

"Sue Mosher [MVP-Outlook]" wrote:

If you want to use that technique, simply put the file:// URL for the document you want to open as the caption for the label.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Cavedwella" wrote in message ...
I have found some code which might just do the trick...

Sub Label1_Click()
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.GetInspector.ModifiedFormPages _
("P.2").Controls("Label1").Caption
objWeb.Visible = True
End Sub

Please can someone show me how to modify it...

Thanks

--
The Wheel is still spinning, but the hamster is dead...


"Cavedwella" wrote:

Hi...

I am a complete newbie to outlook forms and I've just started playing around
with them and I'm stuck...

I have created a form for new equipment, which part way through asks if
training is required... (set up a training course Yes/No)
I would like to have a link to Training request form - which is currently a
word doc on a different network drive...

Not 100% sure how this is going to work, as after trawling through the
messages here, it would appear I need to have the a message box (body of the
email) within the form. When I tried this I couldn't get the hyperlink to
work... e.g. didn't get the blue line underneath...

Can I get a command button to do the same thing?

I am using Outlook 2003.

Anybody able to point me in the right direction please...

--
The Wheel is spinning but the hamster is dead...


  #5  
Old March 22nd 07, 06:47 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Adding a Link to a word document

Please explain in detail what "doesn't work" means. We don't know how you've published the form, whether other code on the form works, etc.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"indygirl" wrote in message ...
I am in need of the same thing. I need to add a hpyerlink to open a word
document on our server but adding the URL to the caption of the button does
not seem to work. Help!

"Sue Mosher [MVP-Outlook]" wrote:

If you want to use that technique, simply put the file:// URL for the document you want to open as the caption for the label.



"Cavedwella" wrote in message ...
I have found some code which might just do the trick...

Sub Label1_Click()
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.GetInspector.ModifiedFormPages _
("P.2").Controls("Label1").Caption
objWeb.Visible = True
End Sub

Please can someone show me how to modify it...

Thanks

--
The Wheel is still spinning, but the hamster is dead...


"Cavedwella" wrote:

Hi...

I am a complete newbie to outlook forms and I've just started playing around
with them and I'm stuck...

I have created a form for new equipment, which part way through asks if
training is required... (set up a training course Yes/No)
I would like to have a link to Training request form - which is currently a
word doc on a different network drive...

Not 100% sure how this is going to work, as after trawling through the
messages here, it would appear I need to have the a message box (body of the
email) within the form. When I tried this I couldn't get the hyperlink to
work... e.g. didn't get the blue line underneath...

Can I get a command button to do the same thing?

I am using Outlook 2003.

Anybody able to point me in the right direction please...

--
The Wheel is spinning but the hamster is dead...


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
put address in word document Steve Fretts Outlook - Using Contacts 1 January 10th 07 11:03 PM
How to put a url link under a word link? jenny Outlook Express 6 December 10th 06 04:36 PM
Link contact to Office document Taylor Outlook - Using Contacts 3 October 25th 06 04:03 AM
Can I add a link from the menu to link a document to a contact? abepop Outlook - Using Contacts 0 August 28th 06 05:31 PM
How do I link a document from our network to an outlook contact? Christi Outlook - Using Contacts 1 May 18th 06 10:46 AM


All times are GMT +1. The time now is 12:57 PM.


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