Is it possible to make a Max2D window without border ?
Sveinung
Sveinung
Extern "win32" Function GetActiveWindow%() Function ShowWindow(hWnd,state) EndExtern Graphics(320,180,0) Local win=GetActiveWindow() ShowWindow(win,False) Const GWL_STYLE = -16 Const WS_BORDER = $800000 Const WS_CAPTION =$C00000 Const SWP_FRAMECHANGED = $0020 Const SWP_SHOWWINDOW = $0040 Const SWP_HIDEWINDOW = $0080 Local old:Int=GetWindowLongA(win,GWL_STYLE) Local newstyle:Int=old & WS_BORDER & ~WS_CAPTION Local style:Int=SetWindowLongA(win,GWL_STYLE,newstyle) SetWindowPos(win,HWND_TOP,100,100,320,180,SWP_FRAMECHANGED|SWP_HIDEWINDOW); ShowWindow(win,1) Repeat DrawText "What No Borders",0,0 Flip() Until KeyHit(KEY_ESCAPE) End