Help, online, "content not found"

L

Larry Brown

Access 2003, using Help menu for "round function" displays a help screen.
When I click on the "round" subject it directs to microsoft on the web where
a "content not found" message is displayed in the status bar. Is there any
way to upgrade the help file? I know I can go to the web and find this
information but users are used to searching through help which worked until
recently. I suspect all the VBA links are not longer active.

Thanks,
 
A

Arvin Meyer [MVP]

Larry Brown said:
Access 2003, using Help menu for "round function" displays a help screen.
When I click on the "round" subject it directs to microsoft on the web
where
a "content not found" message is displayed in the status bar. Is there
any
way to upgrade the help file? I know I can go to the web and find this
information but users are used to searching through help which worked
until
recently. I suspect all the VBA links are not longer active.

Function help is usually available from the VBA IDE Help menu: Use Ctrl + G
to get to an Immediate window where you can input:

? Round()

Then select the word Round and hit F1
 
Top