james_sgp Active Member Licensed User Longtime User Jun 11, 2020 #1 I need to create a number (variable qty) of image views on a panel, I know I`ve seen it before but for the life of me, I can`t find or remember how to do it. Apologies for my stupidity, but would appreciate someone nudging me in the right way. Thanks
I need to create a number (variable qty) of image views on a panel, I know I`ve seen it before but for the life of me, I can`t find or remember how to do it. Apologies for my stupidity, but would appreciate someone nudging me in the right way. Thanks
Erel B4X founder Staff member Licensed User Longtime User Jun 11, 2020 #2 B4X: For i = 1 to 100 Dim iv As ImageView iv.Initialize("") pnl.AddView(iv, ...) Next Upvote 0