New requirements in PB 3.93?
Posted: Mon Mar 07, 2005 3:19 pm
				
				I notice that if you don't put a "ProcedureReturn" in the windows procedure, it won't display ie...
Is this a new feature requirement in PB 3.93? And are there others that we should be aware of?
Or maybe there is a site so that we can read about it.
Alan
			Code: Select all
Procedure Open_Window_0()
  If OpenWindow(#Window_0, 216, 10, 600, 300,  #PB_Window_SystemMenu | #PB_Window_SizeGadget | #PB_Window_TitleBar , "New window")
    If CreateGadgetList(WindowID(#Window_0))
      ButtonGadget(#Button_0, 120, 110, 60, 20, "OK")
      ;HideWindow(#Window_0,0)
      ProcedureReturn WindowID()
    EndIf
  EndIf
EndProcedureOr maybe there is a site so that we can read about it.
Alan