--- title: "How to: Display Pop-up Help" ms.date: "03/30/2017" helpviewer_keywords: - "pop-up Help" - "Help [Windows Forms], pop-up Help" - "Windows Forms, displaying Help" - "forms [Windows Forms], displaying Help" - "modal dialog boxes [Windows Forms], pop-up Help" - "F1 Help [Windows Forms], in dialog boxes" - "HelpProvider component [Windows Forms]" - "Help [Windows Forms], adding to dialog boxes" ms.assetid: 218aa81e-e87e-4d67-af05-11627bbdce3b --- # How to: Display pop-up Help One way to display Help on Windows Forms is through the **Help** button, located on the right side of the title bar, accessible through the property. This type of Help display is well-suited for use with dialog boxes. Dialog boxes shown modally (with the method) have trouble bringing up external Help systems, because modal dialog boxes need to be closed before focus can shift to another window. Additionally, using the **Help** button requires that there is no **Minimize** button or **Maximize** button shown in the title bar. This is a standard dialog-box convention, whereas forms usually have **Minimize** and **Maximize** buttons. You can also use the component to link controls to files in a Help system, even if you have implemented pop-up Help. For more information, see [Providing Help in a Windows Application](how-to-provide-help-in-a-windows-application.md). ## Display pop-up Help 1. In Visual Studio, drag a [HelpProvider](../controls/helpprovider-component-windows-forms.md) component from the Toolbox to your form. It will sit in the tray at the bottom of the Windows Forms Designer. 2. In the Properties window, set the property to `true`. This will display a button with a question mark in it on the right side of the title bar of the form. 3. In order for the to display, the form's and properties must be set to `false`, the property set to `true`, and the property to one of the following values: , , or . 4. Select the control for which you want to show help on your form and set the Help string in the Properties window. This is the string of text that will be displayed in a window similar to a [ToolTip](../controls/tooltip-component-windows-forms.md). 5. Press **F5**. 6. Press the **Help** button on the title bar and click the control on which you set the Help string. ## See also - [Control Help Using ToolTips](control-help-using-tooltips.md) - [Integrating User Help in Windows Forms](integrating-user-help-in-windows-forms.md) - [Windows Forms](../index.yml)