EnableExplicit Define EventID If OpenWindow(0,0,0,500,400,"Window",#PB_Window_SystemMenu|#PB_Window_ScreenCentered) StringGadget(1,10,10,100,20,"Ohne Änderung",0) StringGadget(2,120,10,100,20,"Mit Änderung",0) SetWindowLongPtr_(GadgetID(2),#GWL_EXSTYLE,GetWindowLongPtr_(GadgetID(2),#GWL_EXSTYLE)|#WS_EX_STATICEDGE &~ #WS_EX_CLIENTEDGE) SetWindowPos_(GadgetID(2),0,0,0,0,0,#SWP_NOZORDER|#SWP_NOMOVE|#SWP_NOSIZE|#SWP_FRAMECHANGED) Repeat EventID=WaitWindowEvent() If EventID = #PB_Event_CloseWindow End EndIf ForEver EndIf