I downloaded the new Form Designer, and it worked as the previous one.
I replied just to inform you of a repeatable crash with this pbf file; setting splitter too small or too large (0 or 1000) causes a crash.
Is there any difference from the one which came with PB, that we should test?
Code: Select all
Enumeration #PB_Compiler_EnumerationValue
  #Window_0
EndEnumeration
Enumeration #PB_Compiler_EnumerationValue
  #Canvas_0
  #Canvas_1
  #Splitter_0
EndEnumeration
Procedure InitWindow_0()
  OpenWindow(#Window_0, 0, 0, 600, 400, "", #PB_Window_SystemMenu)
  CanvasGadget(#Canvas_0, 220, 60, 100, 200)
  CanvasGadget(#Canvas_1, 329, 60, 151, 200)
  SplitterGadget(#Splitter_0, 220, 60, 260, 200, #Canvas_0, #Canvas_1, #PB_Splitter_Vertical | #PB_Splitter_Separator)
  SetGadgetState(#Splitter_0, 100)
EndProcedure
Procedure Window_0_Events(event)
  Select event
    Case #PB_Event_CloseWindow
      ProcedureReturn #False
    Case #PB_Event_Menu
      Select EventMenu()
      EndSelect
    Case #PB_Event_Gadget
      Select EventGadget()
      EndSelect
  EndSelect
  ProcedureReturn #True
EndProcedure
InitWindow_0()
Repeat
  event = WaitWindowEvent()
Until Window_0_Events(event) = #False