Share via


DTM_STOP

Send Feedback

This message is sent by an application to STOP a navigation started in the HTML control.

Syntax

DTM_STOP
  wParam = 0;
  lParam = 0;

Parameters

None.

Return Values

None.

Remarks

The following example shows how you might use this message.

SendMessage(hWndCtrl, DTM_NAVIGATE, 0, 
            (LPARAM)TEXT("https://www.proseware.com"));
Sleep(50);
SendMessage(g_hWndCtrl, DTM_STOP, 0, 0);

Requirements

Pocket PC: Windows Mobile 2003 and later
Smartphone: Windows Mobile 2003 and later
OS Versions: Windows CE .NET 4.2 and later
Header: htmlctrl.h
Library: htmlctrl.lib

See Also

HTML Control API Messages | DTM_NAVIGATE | NM_BEFORENAVIGATE | NM_DOCUMENTCOMPLETE | NM_NAVIGATECOMPLETE

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.