devxlogo

Add a Tooltip for the MFC Dialog

This method works for the MFC derived class and was tested on a Dialog-based class.

  1. Set Active Project
  2. Select Project –>Add to Project –>Components and Controls –> VC++ Components –> ToolTip Support
  3. Insert!
  4. CDialog::OnInitDialog() refer the following:
     	// TODO: Use one of the following forms to add controls:	// m_tooltip.AddTool(GetDlgItem(IDC_), );	// m_tooltip.AddTool(GetDlgItem(IDC_), "");	m_tooltip.AddTool(GetDlgItem(IDC_Smile), "Click here to see smile");
  5. Explanation:

    1. .h file: Add the following inside the Constructor:
       	public:	   virtual BOOL PreTranslateMessage(MSG* pMsg);	protected:	   CToolTipCtrl m_tooltip;	   Virtual BOOL OnInitDialog();
    2. .cpp file: Add 2 methods:
       		PreTranslateMessage(MSG* pMsg);	   ***will add CToolTipCtrl::RelayEvent()	OnInitDialog();

      Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

      See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.