Save the Form
Open it
Uncheck #PB_Window_Invisible
Save the form
Open it
Change view/code design : the flag #PB_Window_Invisible is still present in OpenWindow() and some are doubled :
Code: Select all
Procedure OpenWindow_0(x = 0, y = 0, width = 300, height = 200)
Window_0 = OpenWindow(#PB_Any, x, y, width, height, "", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_Invisible | #PB_Window_ScreenCentered | #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget | #PB_Window_Invisible | #PB_Window_ScreenCentered)
EndProcedure