I'm making progress on the new save/load function - the Designer is already able to load the following code
Code: Select all
  Window_0 = OpenWindow(#PB_Any, 0, 0, 600, 400, "", #PB_Window_SystemMenu)
  ListViewGadget(#ListView_0, 10, 10, 170, 380)
  Checkbox_0 = CheckBoxGadget(#PB_Any, 200, 20, 240, 30, "")
  Option_0 = OptionGadget(#PB_Any, 200, 60, 240, 30, "")
  String_0 = StringGadget(#PB_Any, 200, 100, 260, 30, "")
  Panel_0 = PanelGadget(#PB_Any, 190, 160, 340, 230)
  AddGadgetItem(Panel_0, -1, "Tab 1")
  Combo_0 = ComboBoxGadget(#PB_Any, 40, 19, 210, 60)
  AddGadgetItem(Panel_0, -1, "Item 2")
  IP_0 = IPAddressGadget(#PB_Any, 40, 29, 230, 30)
  ScrollArea_0 = ScrollAreaGadget(#PB_Any, 40, 69, 260, 110, 460, 460,1)
  Spin_0 = SpinGadget(#PB_Any, 40, 30, 140, 30, 0, 0)
  CloseGadgetList()
  Option_0 = OptionGadget(#PB_Any, 80, 179, 150, 20, "")
  CloseGadgetList()



