B4i 2.31
Up until this week I could go:
NavControl = Nav
NavControl.ToolBarVisible = True
Page1.Initialize("Page1")
Page1.Title = "Page 1"
NavControl.ShowPage(Page1)
Page1.RootPanel.LoadLayout("1")
Now I have to go:
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
NavControl.ShowPage(Page1)
NavControl.ToolBarVisible = True
Page1.RootPanel.LoadLayout("1")
i.e. set toolbar visibility after Showing Page (otherwise the toolbar doesn’t show),- this seems reasonable but, what changed? How did it work before?
Up until this week I could go:
NavControl = Nav
NavControl.ToolBarVisible = True
Page1.Initialize("Page1")
Page1.Title = "Page 1"
NavControl.ShowPage(Page1)
Page1.RootPanel.LoadLayout("1")
Now I have to go:
NavControl = Nav
Page1.Initialize("Page1")
Page1.Title = "Page 1"
NavControl.ShowPage(Page1)
NavControl.ToolBarVisible = True
Page1.RootPanel.LoadLayout("1")
i.e. set toolbar visibility after Showing Page (otherwise the toolbar doesn’t show),- this seems reasonable but, what changed? How did it work before?