
Adds a drop shadow to any hWnd you specify, just like you see in OfficeXP menus.
Inputs
hWnd: handle of the window to add drop shadow to.
Assumes
Only works on Windows XP.
API DeclarationsPublic Declare Function GetClassLong Lib "user32" Alias "GetClassLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
Public Declare Function SetClassLong Lib "user32" Alias "SetClassLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Public Const CS_DROPSHADOW = &H20000
Public Const GCL_STYLE = (-26)