F fatman Active Member Licensed User Longtime User Apr 29, 2021 #1 Hi, I´m using Tabstrip with several Tabs. I need to know when the user "leaves" a certain tab. Is there a chance to recognize that event? Thx for hints and ideas
Hi, I´m using Tabstrip with several Tabs. I need to know when the user "leaves" a certain tab. Is there a chance to recognize that event? Thx for hints and ideas
M Mahares Expert Licensed User Longtime User Apr 29, 2021 #2 fatman said: Thx for hints and ideas Click to expand... Maybe something of this nature: B4X: Private PrevPage As Int 'in Globals B4X: Sub TabStrip1_PageSelected (Position As Int) Log($"Just left page:" ${PrevPage}"$) Log($"Current page: ${Position}"$) PrevPage=Position End Sub Upvote 0
fatman said: Thx for hints and ideas Click to expand... Maybe something of this nature: B4X: Private PrevPage As Int 'in Globals B4X: Sub TabStrip1_PageSelected (Position As Int) Log($"Just left page:" ${PrevPage}"$) Log($"Current page: ${Position}"$) PrevPage=Position End Sub