The VBA MsgBox function includes optional arguments that let you add a help button to the message box, and display help topics related to your application.
The syntax for the MsgBox function is:
MsgBox(prompt[, buttons] [, title] [, helpfile, context])
To make your help file available from the message box, pass the vbMsgBoxHelpButton constant to show the help button, and pass the path for your help file and the help context ID to define the help topic.
The following example demonstrates how to display your Help file while using MsgBox in your application.
Sub ShowHelp ()
Const cstrHlp As String = _
"C:\ProgramFiles\FMS\Total
Visual CodeTools 2007\TVCTL.chm"
Dim strMessage As String
strMessage = MsgBox("Test For Help
file", vbOKCancel + vbQuestion + _
vbDefaultButton1 +
vbMsgBoxHelpButton, "Display Help File", cstrHlp, 71)
End Sub
If you click on the message box’s Help button, the Help file for Total Visual CodeTools should open. This is the way one can open the desired Windows help file/HTML help file while displaying a message box in a VBA based application.
The above code works fine with Office 2003 VBA and earlier to display the desired help file. However, if you try to use the same function in Office 2007 VBA, it does not open the appropriate help file.
For example if you try to use MsgBox function to open a help file in Access 2007 application, it opens the Access 2007 Help file.
Similarly, for Excel 2007, it opens the Excel help system and not your own. This appears to affect every Office 2007 product. It only opens the application’s standard help file.
Unfortunately, this is broken until Microsoft fixes the MsgBox function. If you need this feature, you’ll need to create your own form with a help button and display your message and help file link that way.
Total Access Emailer 2022
Email Everyone in Your Access List!
Total Visual Agent 2021
Automate Access Database Chores!
Updated Microsoft Access to SQL Server Upsizing Center with whitepapers, resources, and SQL Server Express Downloads
Strategic Overview
Microsoft Access within an Organization's Database Strategy
How many simultaneous Microsoft Access users?
Blaming Microsoft Access instead of the Developer
Microsoft Access Version Feature Differences
Microsoft Access Versions, Service Packs and Updates
Microsoft Office 365 Access Update Version Releases
Top 14 Features Added with MS Access 2007
Taking Over Legacy MS Access Databases
Winner of Every Best Access Add-in Award
Set AutoNumber Starting Number Other than 1
Avoid Unnecessary or Duplicate Indexes
Copy Command Button and Keep Picture
Module VBA to Forms and Controls
Subform Reference to Control Rather than Field
Suppress Page Headers and Footers on the First Page of Your Report
Annual Monthly Crosstab Columns
Add Buttons to the Quick Access Toolbar
Collapse the Office Ribbon for more space
Avoid Exits in the Body of a Procedure
Send Emails with DoCmd.SendObject
Error Handling and Debugging Techniques
Error Number and Description Reference
Remote Desktop Connection Setup
Terminal Services and RemoteApp Deployment
Missing Package & Deployment Wizard
Remove 'Save to SharePoint Site' Prompt from an Access Database
Class Not Registered Run-time Error -2147221164
Microsoft Access to SQL Server Upsizing Center
When and How to Upsize Access to SQL Server
SQL Server Express Versions and Downloads
Deploying MS Access Linked to SQL Azure
SQL Server Azure Usage and DTU Limits