Context help in CFormView?

Source: Internet
Author: User

 

 

I wantThe CFormView class SDI application adds real context help, but fails.

A: You should overload the OnHelpHitTest function of the CMyFormView class:

 

 

LRESULT CMyFormView: OnHelpHitTest (WPARAM, LPARAM lParam)

{

LRESULT lResult = (LRESULT) 0x00;

 

CWnd * pWndChild = ChildWindowFromPoint (Cpoint (lParam), CWP_ALL | CWP_SKIPINVISIBLE );

 

If (pWndChild &: IsWindow (pWndChild-> m_hWnd ))

{

LResult =: GetWindowLong (pWndChild-> m_hWnd, GWL_ID );

 

If (lResult)

LResult + = HID_BASE_COMMAND;

}

 

If (lResult = (LRESULT) 0x00)

LResult =: GetWindowLong (m_hWnd, GWL_ID) + HID_BASE_RESOURCE;

 

Return lResult;

}

 

Then you can use the help files you usually use.To ensure the correct prefix, see TN028: Context-Sensitive Help Support.

For example:

 

ID_SOME_MENU_ITEM_OR_COMMAND_BUTTON

IDR_SOME_WINDOW_OR_DIALOG

IDP_PROMPT

IDW_CONTROL_THAT_IS_NOT_A_COMAND_BUTTON

 

Make sure thatID is included in the file resource. hm.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.