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

Hyperlink in Outlook form v2



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 31st 06, 04:06 PM posted to microsoft.public.outlook.program_forms
bawjaws
external usenet poster
 
Posts: 3
Default Hyperlink in Outlook form v2

I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody

????

Ads
  #2  
Old August 31st 06, 04:09 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Hyperlink in Outlook form v2

Code works only on published forms. The symptoms suggest that the recipients don't have access to the published form definition. Did you publish the form to the Organizational Forms library with the "Send form definition with item" box on the (Properties) page unchecked?

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

"bawjaws" wrote in message ups.com...
I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody

????

  #3  
Old August 31st 06, 04:23 PM posted to microsoft.public.outlook.program_forms
bawjaws
external usenet poster
 
Posts: 3
Default Hyperlink in Outlook form v2

I published the form to my personal library to test it, would this make
a difference


Sue Mosher [MVP-Outlook] wrote:
Code works only on published forms. The symptoms suggest that the recipients don't have access to the published form definition. Did you publish the form to the Organizational Forms library with the "Send form definition with item" box on the (Properties) page unchecked?

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

"bawjaws" wrote in message ups.com...
I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody

????


  #4  
Old August 31st 06, 04:58 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Hyperlink in Outlook form v2

Yes, it makes a difference. It means the code will run only for you, not for other recipients.

You also need to check the state of the "Send form definition with item" box, though.
--
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

"bawjaws" wrote in message oups.com...
I published the form to my personal library to test it, would this make
a difference


Sue Mosher [MVP-Outlook] wrote:
Code works only on published forms. The symptoms suggest that the recipients don't have access to the published form definition. Did you publish the form to the Organizational Forms library with the "Send form definition with item" box on the (Properties) page unchecked?

"bawjaws" wrote in message ups.com...
I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody


  #5  
Old September 1st 06, 09:36 AM posted to microsoft.public.outlook.program_forms
bawjaws
external usenet poster
 
Posts: 3
Default Hyperlink in Outlook form v2

Thanks Sue. I had the 'Send form' unchecked, I just didn't wnat others
tosee the form while I was still working on it
Thanks for help, much appreciated


Sue Mosher [MVP-Outlook] wrote:
Yes, it makes a difference. It means the code will run only for you, not for other recipients.

You also need to check the state of the "Send form definition with item" box, though.
--
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

"bawjaws" wrote in message oups.com...
I published the form to my personal library to test it, would this make
a difference


Sue Mosher [MVP-Outlook] wrote:
Code works only on published forms. The symptoms suggest that the recipients don't have access to the published form definition. Did you publish the form to the Organizational Forms library with the "Send form definition with item" box on the (Properties) page unchecked?

"bawjaws" wrote in message ups.com...
I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody


  #6  
Old September 1st 06, 12:29 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Hyperlink in Outlook form v2

Leave that "Send form definition" box unchecked unless you want the code to run for no one, including you.

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

"bawjaws" wrote in message ups.com...
Thanks Sue. I had the 'Send form' unchecked, I just didn't wnat others
tosee the form while I was still working on it
Thanks for help, much appreciated


Sue Mosher [MVP-Outlook] wrote:
Yes, it makes a difference. It means the code will run only for you, not for other recipients.

You also need to check the state of the "Send form definition with item" box, though.



"bawjaws" wrote in message oups.com...
I published the form to my personal library to test it, would this make
a difference


Sue Mosher [MVP-Outlook] wrote:
Code works only on published forms. The symptoms suggest that the recipients don't have access to the published form definition. Did you publish the form to the Organizational Forms library with the "Send form definition with item" box on the (Properties) page unchecked?

"bawjaws" wrote in message ups.com...
I am using the following code to place a hyperlink in a form

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

(Thanks Sue Mosher)
When I 'Run' the form the hyperlink works, however when I send the form
onto people the link is dead. Any clues anybody


 




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
Email won't hyperlink in custom form Judy Outlook - Using Contacts 6 August 30th 06 10:37 PM
How do I put a hyperlink to a web address in a custom form? Janet Outlook - Using Forms 2 April 29th 06 03:25 PM
Invoke Outlook from a hyperlink [email protected] Outlook - Using Forms 1 March 23rd 06 10:09 AM
Can I use VBA to activate a hyperlink in Outlook? [email protected] Outlook and VBA 2 January 18th 06 12:57 AM
Inserting Hyperlink into Form Kathy Outlook - Using Forms 3 January 12th 06 10:13 PM


All times are GMT +1. The time now is 04:16 AM.


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