Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
4/8/2010
Note: |
---|
This topic does not apply to the Home screen on Windows Mobile Standard. |
This message is sent to display the Home screen on Windows Mobile Professional and Windows Mobile Classic. An application can use this message to directly launch the Home screen.
Syntax
DTM_SHOWTODAY bShow = (BOOL) wParam; |
Parameters
Parameter | Description |
---|---|
bShow |
Set to TRUEto display the Home screen. |
Return Value
An application should return 0if it processes this message.
Example
The following example demonstrates how to use the DTM_SHOWTODAY message to show the Home screen.
Copy Code | |
---|---|
SendMessage( GetDesktopWindow(), DTM_SHOWTODAY, TRUE, 0); |