You can access any variable or object from another module/page as long as they are declared public.
Like, if you have in B4XMainPage a Public myLabel as B4XView
you can use in any module/ page the following format hostModule.ObjectName.Property = Value, which in this case would be B4XPages.MainPage.myLabel.text ) "any text you want"
B'XPages is the object that holds the reference to all pages in the stack, MainPage is the only page that must exist in the stack, but you can access any page using the same methodology
But remember, the actual change won't be visible until the page is brought back to foreground!