WinBlitz3D Styles

Blitz3D Forums/Blitz3D Userlibs/WinBlitz3D Styles

Nack(Posted 2008) [#1]
Is there any doc on how the styles work? For example, for the label gadgets, if I leave the style to 0, it will have a border around it, how do I get rid of that? I tried different styles and it still doesn't work. I checked the WB3DStyles.bb under the label styles, but any one of them will make my label pop up as another window. Any ideas? Thanks


John Blackledge(Posted 2008) [#2]
This may point you in the right direction.
You have to learn about Windows flags since yu're now working with the Windows GUI.



Kev(Posted 2008) [#3]
Nack,

Winblitz3D use standard winapi styles it also follows the correct method of using them. so for example to display a label in a window the label is a child of the parent window and requires to to define the style as so by using WS_CHILD. this way your gadgets wont popup in new windows

kev


Nack(Posted 2008) [#4]
Oh thanks, I forgotten that winblitz3d is wrapping of the winapi. This dll is hardcore indeed ;)