Need to know the Constant name for the following number:
&H40101
It's used to remove the icon from a form by using:
Anyone?VB Code:
Private Const GWL_EXSTYLE As Long = (-20) SetWindowLong Me.hwnd, GWL_EXSTYLE, &H40101
Bulging Woka
Printable View
Need to know the Constant name for the following number:
&H40101
It's used to remove the icon from a form by using:
Anyone?VB Code:
Private Const GWL_EXSTYLE As Long = (-20) SetWindowLong Me.hwnd, GWL_EXSTYLE, &H40101
Bulging Woka
http://groups.google.com/groups?q=%2...-8&sa=N&tab=wg
Seems to be "DRAGDROP_S_CANCEL"
:)
It is a combination of 3 constants:
#define WS_EX_APPWINDOW 0x00040000L
#define WS_EX_WINDOWEDGE 0x00000100L
#define WS_EX_DLGMODALFRAME 0x00000001L
(from WinUser.h)
Note: you can find these constants and descriptions of what they do in the EventVB.chm file under "WindowStyleExtendedBits enumeration"..