Change Style and ExStyle of a window...
Posted: Sat Feb 22, 2003 10:53 am
Code updated for 5.20+
Restored from previous forum. Originally posted by Eddy.
My 4th contribution
TOTAL Win Style Customization...Easy way to do it.
Example:
viewtopic.php?t=5204">http://forums.pur ... styles.asp
Blast !!!!
Restored from previous forum. Originally posted by Eddy.
My 4th contribution

TOTAL Win Style Customization...Easy way to do it.
Code: Select all
;**********************************************
NewStyle.l = .... ;new window style
NewExStyle.l = .... ;new window Exstyle
OpenWindow(0,0,0,100,200, "Win Customization", NewStyle)
SetWindowLong_(WindowID(0), #GWL_EXSTYLE, @NewExStyle);Set Exstyle
SetWindowPos_(WindowID(0), #HWND_TOPMOST,0,0,0,0,#SWP_NOMOVE|#SWP_NOSIZE);Always on top, if you want :)
;**********************************************
viewtopic.php?t=5204">http://forums.pur ... styles.asp
Blast !!!!