Wie kann man bitte in Purebasic ein Programmwindows ohne Rahmen mit der Maus verschieben?
Code: Alles auswählen
OpenWindow(#PB_Any, 0, 0, 800, 600, "WindowTitle", #PB_Window_BorderLess|#PB_Window_ScreenCentered)
ContainerGadget(#PB_Any, 10, 10, 400, 400, #PB_Container_Raised)
InitKeyboard()
Repeat
Event = WaitWindowEvent()
ExamineKeyboard()
Until KeyboardPushed(#PB_Key_Escape)
Gruss

