alienhunter Active Member Licensed User Longtime User Mar 24, 2019 #1 Hi I try to refresh a page every minute , but if i put a timer on the page itself is goes bananas with each refresh ads more timers ... i found this post #3 from Anser https://www.b4x.com/android/forum/t...to-run-every-1-hour-solved.98700/#post-621693 and it works, but how would i refresh a page from this class ? thanks AH
Hi I try to refresh a page every minute , but if i put a timer on the page itself is goes bananas with each refresh ads more timers ... i found this post #3 from Anser https://www.b4x.com/android/forum/t...to-run-every-1-hour-solved.98700/#post-621693 and it works, but how would i refresh a page from this class ? thanks AH
Harris Expert Licensed User Longtime User Mar 24, 2019 #2 Instead of refreshing the entire page (page.refresh), just refresh components on the page that NEED refreshing within your timer Sub tim_tick dim tbl1 as ABMTable = page.component("tblmast") tbl1.refresh End Sub Upvote 0
Instead of refreshing the entire page (page.refresh), just refresh components on the page that NEED refreshing within your timer Sub tim_tick dim tbl1 as ABMTable = page.component("tblmast") tbl1.refresh End Sub