Wish add arrays of views from the designer - Cableguy    Sep 3, 2020 arrays of views directly inside the designer? Please???
Adding a few dozens panels one by one, and... an array and add the views into them, but each view has to be dimmed anyway.
Please consider this wish!... B4i Question Declare arrays of views in the designer [closed] - Didier9    Jun 28, 2018 I need help doing this, if it is possible.
Some of my apps deal with arrays of views to facilitate processing. Erel strongly suggests using the Designer to declare views (rather than declaring in code) but I have not found a way or an example for how to do that.
TIA... B4J Question Problem triggering event of view array [solved] - Didier9    Feb 27, 2019 .Show
cb = Array As CheckBox( CheckBox1, CheckBox2, CheckBox3, CheckBox4)
End Sub
'Return... B4J Question Need to create table view array - Erel (first post)    Oct 1, 2023 There is nothing special with an array of any object or view.
Dim Tables() As TableView = Array As TableView(TableView1, TableView2)
I recommend you to create a List instead of an array and you can of course automate this process and collect all TableViews:
For Each x As B4XView In Root.GetAllViewsRecursive
If x Is TableView Then
Tables.Add(x)
End If
Next... B4A Question WebView2 and large array data - Erel (first post)    Nov 4, 2025 Tip: FileDirRootExternal = broken code.
I was wondering how this could be ported to B4A. The area ... B4A Question array of view - RUNO (first post)    Aug 17, 2020
You can use the Tag to store infos about the Image. imv(i).Tag = i instead of just storing i you also could store a map with more i... B4A Question array of views - derez    Dec 22, 2010 . 0.00
Compiling generated Java code. Error
B4A line: 97
vw = Array As View(\
javac 1.6.0_22
for these lines
Dim vw() As View
vw = Array As View("zplus","zminus... B4J Question Add row to table view using an array of nodes - Daestrum (first post)    Aug 2, 2024   (1 reaction) table
table1.Items.Add(Array(el,co,pa))
Next
155874... B4A Question [Solved]Assign an array of views in declaration - Martincg (first post)    Oct 20, 2019 Thanks Klaus, it's nice and simple now I know.... B4A Question View array in abstract designer. - Beja    Nov 28, 2013 Hello friends,
I am trying to create array of labels in the abstract designer (not in code).. in VB I used to just
give them the same name and VB creates the indexes, after asking you for... Page: 1   2   3   4   5   6   7   |