janderkan Well-Known Member Licensed User Longtime User Nov 20, 2020 #1 I can change the the icon on the B4XMainPage by adding this to Main.AppStart B4X: MainForm.Icon = fx.LoadImage(File.DirAssets, "Futedo.jpg") but i cannot figure out how to change the icon on the subsequent B4XPages.
I can change the the icon on the B4XMainPage by adding this to Main.AppStart B4X: MainForm.Icon = fx.LoadImage(File.DirAssets, "Futedo.jpg") but i cannot figure out how to change the icon on the subsequent B4XPages.
stevel05 Expert Licensed User Longtime User Nov 20, 2020 #2 B4XPages.GetNativeParent(Me) will get the form for the current page. Then add the icon the same as for the MainForm. Upvote 0
B4XPages.GetNativeParent(Me) will get the form for the current page. Then add the icon the same as for the MainForm.