hide window title bar xojo

Hello guys, please tell how to hide window title bar ?

In your window, take a look in the inspector and change Frame type to Plain Box.
Should do what you’re after.

Did you know there’s a manual?
It’s really great, they put a lot of time into it. You should read it.
http://developer.xojo.com/userguide

If you like PDF format better, there’s a more book-like version in the folder titled Documentation that’s inside your Xojo folder.

What target? If you want to target OS X, do you still want the window widgets?

RTFM ?

Hi,

If your target is Widows OS, you can use an API. Following is an example to do this,

Declare Function SetWindowLongW Lib "User32" (HWND As Integer, Index As Integer, NewLong As Integer) As Integer Const GWL_STYLE = -16 Const WS_POPUP = &h80000000 Call SetWindowLongW(objWindow.Handle, GWL_STYLE, WS_POPUP)

You can put the code in a module with your method and call it from the window where you want hide the tittle.