W98 start icon
Does someone have a snippet of code of how I can activate the
start icon on the W98 desktop
# 1 Re: W98 start icon
Hi Wayne,
Do you mean show the Start menu? Try this:
Public Const WM_SYSCOMMAND = &H112
'// Values for wParam in WM_SYSCOMMAND
Public Const SC_TASKLIST = &HF130&
Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd
As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Call SendMessage(Me.hWnd, WM_SYSCOMMAND, SC_TASKLIST, ByVal 0&)
.. . . . . . . . . . . . . . . . . . . . . .
Please post/reply to the
newsgroup(s)
Klaus H. Probst, MVP
http://www.vbbox.com/
http://www.mvps.org/ccrp/
Wayne Hall <wayhall@rcn.com> wrote in message news:38dbd2f8@news.dev-archive.com...
> Does someone have a snippet of code of how I can activate the
> start icon on the W98 desktop
>
>
# 2 Re: W98 start icon
Hi Wayne,
Do you mean show the Start menu? Try this:
Public Const WM_SYSCOMMAND = &H112
'// Values for wParam in WM_SYSCOMMAND
Public Const SC_TASKLIST = &HF130&
Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd
As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
Call SendMessage(Me.hWnd, WM_SYSCOMMAND, SC_TASKLIST, ByVal 0&)
.. . . . . . . . . . . . . . . . . . . . . .
Please post/reply to the
newsgroup(s)
Klaus H. Probst, MVP
http://www.vbbox.com/
http://www.mvps.org/ccrp/
Wayne Hall <wayhall@rcn.com> wrote in message news:38dbd2f8@news.dev-archive.com...
> Does someone have a snippet of code of how I can activate the
> start icon on the W98 desktop
>
>