VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

adds a notify icon at the windows task bar for your application

chopin  (2 Submissions)   Miscellaneous   VB 6.0   Unknown Difficulty   Tue 6th May 2003   Mon 8th February 2021

adds a notify icon at the windows task bar for your application

API Declarations


Public Declare Function Shell_NotifyIcon Lib "shell32.dll" Alias "Shell_NotifyIconA" (ByVal dwMessage As Long, lpData As NOTIFYICONDATA) As Long

Public Type NOTIFYICONDATA
CbSize As Long
HWnd As Long
Uld As Long
Uflags As Long
UcallbackMessage As Long
HIcon As Long
SzTip As String * 64
End Type
Public Const NIM_ADD = &H0
Public Const NIM_MODIFY = &H1
Public Const NIM_DELETE = &H2
Public Const WM_MOUSEMOVE = &H200
Public Const NIF_MESSAGE = &H1
Public Const NIF_ICON = &H2
Public Const NIF_TIP = &H4
Public Const WM_LBUTTONBLCLK = &H203
Public Const WM_LBUTTONDOWN = &H201
Public Const WM_LBUTTONUP = &H202
Public Const wm_rbuttondblclk = &H206
Public Const wm_rbuttondown = &H204
Public Const wm_rbuttonup = &H205



Rate adds a notify icon at the windows task bar for your application (2(2 Vote))
adds a notify icon at the windows task bar for your application.bas

adds a notify icon at the windows task bar for your application Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters