Calendar

W

williamr

Can a hyperlink be assigned to a calendar date so when you click on that date
it takes you to a document or another site? If so, can more that 1 event be
assigned?
 
K

kingston via AccessMonster.com

Try the following after the calendar update event:

strURL = string generated based on calendar control value
Application.FollowHyperlink strURL

This way, you can generate as many different links as you want and have more
control over the behavior of the control.
 
W

williamr

Thank You

kingston via AccessMonster.com said:
Try the following after the calendar update event:

strURL = string generated based on calendar control value
Application.FollowHyperlink strURL

This way, you can generate as many different links as you want and have more
control over the behavior of the control.
 
Top