QHTM_GOTO_LINK
Force the HTML control to scroll to a named linked within a document. Useful if you have a large document and want to bring a particular section to the users attention.
Parameters
- wParam
- Not used, should be zero
- lParam
- String pointer for the link you wish to navigate to
Return value
None
Example
::SendMessage( hwndQHTM, QHTM_GOTO_LINK, 0, (LPARAM)pcszLinkName );
// or using the message cracker macro
QHTM_GotoLink( hwndQHTM, pcszLinkName );
See also None