Michael2150 Member Licensed User Jul 20, 2020 #1 When using B4XPages.GetPage you get the following code snippet as a suggestion on how to use this function. B4X: Dim mp As B4XMainPage = B4XPages.Get("MainPage") The "Get" method has changed its name to "GetPage" B4X: Dim mp As B4XMainPage = B4XPages.GetPage("MainPage")
When using B4XPages.GetPage you get the following code snippet as a suggestion on how to use this function. B4X: Dim mp As B4XMainPage = B4XPages.Get("MainPage") The "Get" method has changed its name to "GetPage" B4X: Dim mp As B4XMainPage = B4XPages.GetPage("MainPage")
Erel B4X founder Staff member Licensed User Longtime User Jul 20, 2020 #2 Will be fixed. Tip: best way to get the main page is with: B4XPages.MainPage. This also allows you to directly access the main page without a variable.
Will be fixed. Tip: best way to get the main page is with: B4XPages.MainPage. This also allows you to directly access the main page without a variable.