Window GUI

BlitzMax Forums/BlitzMax Beginners Area/Window GUI

Smokey(Posted 2005) [#1]
Hi

It's there away avoid window resizing bar? and removing the tilebar? or customise the window propriety like removing the minimize and maximise button? just having a plain window with close button.


Smokey(Posted 2005) [#2]
humm I found that if you create a window with those setting I get what I want..

you these setting

window=CreateWindow("My Window",40,40,320,240,0,1)

if you change the second value but the num 1 to 15 you can create specific window


assari(Posted 2005) [#3]
Smokey,
If you look at the helpfiles under CreateWindow, there are a few styles that you can use to create your window.

For example, to create a window with title bar and a status bar (but not resizable) then you would say
Local window:TGadget=CreateWindow("My Window",10,30,640,480,0,WINDOW_TITLEBAR | WINDOW_STATUS)



Smokey(Posted 2005) [#4]
well humm it's working now, before it did't work at all
weird probaly me that did something wrong

thanks assari !