IonicWind Software

Creative Basic => General Questions => Topic started by: TexasPete on December 14, 2009, 05:50:53 AM

Title: _WS_EX_PALETTEWINDOW
Post by: TexasPete on December 14, 2009, 05:50:53 AM
_WS_EX_PALETTEWINDOW

Is anyone familiar with "_WS_EX_PALETTEWINDOW" , I would like to define it as a constant and useing in styling. I Did a Search with microsoft and on this forum. I found tons of stuff but not the number to set it to.

Thanks
Texas Pete
Title: Re: _WS_EX_PALETTEWINDOW
Post by: LarryMc on December 14, 2009, 06:12:18 AM
It's defined in Sapero's windowssdk.inc file

CONST WS_EX_TOOLWINDOW = 0x80
CONST WS_EX_TOPMOST = 0x8
CONST WS_EX_WINDOWEDGE = 0x100

CONST WS_EX_PALETTEWINDOW = (WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST)


Larry