Shay Well-Known Member Licensed User Longtime User Sep 9, 2011 #1 Getting the error on last line - what am I doint wrong? Dim PanelTrans as panel Dim PopList as list PanelTrans.Initialize ("PanelTrans") PopList.Initialize Activity.AddView(PanelTrans,0,0,100%x,100%y) PanelTrans.Color = Colors.Transparent PanelTrans.AddView (PopList, 50, 50, 100%x, 100%y)
Getting the error on last line - what am I doint wrong? Dim PanelTrans as panel Dim PopList as list PanelTrans.Initialize ("PanelTrans") PopList.Initialize Activity.AddView(PanelTrans,0,0,100%x,100%y) PanelTrans.Color = Colors.Transparent PanelTrans.AddView (PopList, 50, 50, 100%x, 100%y)
K kickaha Well-Known Member Licensed User Longtime User Sep 9, 2011 #2 B4X: Dim PopList as list A List is not a view (it is more like a dynamic array) so cannot be placed on a Panel. I think you wanted a ListView Upvote 0
B4X: Dim PopList as list A List is not a view (it is more like a dynamic array) so cannot be placed on a Panel. I think you wanted a ListView