QHTM_ADD_HTML
Add HTML to the current document. If there is no document then one is created.
Parameters
- wParam
- 0 - Don't scroll, 2 - autoscroll
- lParam
- Pointer to the text you want to add.
Return value
Not used.
Example
::SendMessage( (hwnd), QHTM_ADD_HTML, 0, (LPARAM), "This is some text text<br>" );
//
// Or use the QHTM message cracker
QHTM_AddHTML( hwnd, szBuffer, "This is some text text<br>" );
QHTM_AddHTML2( hwnd, szBuffer, "This is some text text<br>", 2 );
See also QHTM_RenderHTML