|
|
| Exchange/Outlook
tip |
| Help files for public folder custom forms |
| Submitted by:
Thomas Jones (WISC)
Williams Office Technologies
( Phone: (918) 573-5733
+ mailto: Thomas.Jones@williams.com
|
| If your Public Folder Custom Form requires
lengthy, highly detailed Help Files with lots of screenshots and easy
navigation, the easiest way to manage this is by creating Intranet web
pages. This way your users get the most up-to-date information,
without any nasty deployment issues.
Of course, hyperlinks added to a custom form at
design-time won't be operable at run-time. To work around this
limitation I use either a Command Button or an Image Control with the
following code snippet behind it. (This code uses an image control named
MyLinkImage)
Sub MyLinkImage_Click()
Set MyApp = Item.Application
Set Web = MyApp.CreateObject("InternetExplorer.Application")
Web.Visible = TRUE
Web.Navigate "www.microsoft.com <http://www.microsoft.com>"
End Sub
|
Back to the tips section of the Exchange section
on OutlookExchange.Com. |
Go
to the home page of the Exchange section on
OutlookExchange.Com. |
| Disclaimer:
I hope that the information in these pages is valuable to you. Your use of the information
contained inthese pages, however, is at your sole risk. All information on these pages is
provided "as -is", without any warranty, whether express or implied, of its
accuracy, completeness, fitness for a particular purpose, title or non-infringement, and
none of the third-party products or information mentioned in the work are authored,
recommended, supported or guaranteed by me. I shall not be liable for any damages you may
sustain by using this information, whether direct, indirect, special, incidental or
consequential, even if it has been advised of the possibility of such damages. |
|