D darabon Active Member Aug 20, 2020 #1 I need to raise B4XPage_Created on each time when I show the page with ShowPageAndRemovePreviousPages But That's not How do i do it?
I need to raise B4XPage_Created on each time when I show the page with ShowPageAndRemovePreviousPages But That's not How do i do it?
Erel B4X founder Staff member Licensed User Longtime User Aug 20, 2020 #2 B4XPage_Created will only be raised once. B4XPage_Created will only be raised once. If you want to reset the layout then add a "Reset" sub and call it whenever you like. Remember that the B4XPage class is a regular class. You can also handle the B4XPage_Appear event: https://www.b4x.com/android/forum/t...or-managing-multiple-pages.118901/post-744867 Upvote 0
B4XPage_Created will only be raised once. B4XPage_Created will only be raised once. If you want to reset the layout then add a "Reset" sub and call it whenever you like. Remember that the B4XPage class is a regular class. You can also handle the B4XPage_Appear event: https://www.b4x.com/android/forum/t...or-managing-multiple-pages.118901/post-744867
D darabon Active Member Aug 20, 2020 #3 Why repeat " B4XPage_Created will only be raised once. " twice Reset is a good idea Thanks Upvote 0