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!... 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 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... B4A Question array value from CLV get view result error when j.release - JohnC (first post)    Apr 1, 2024 encountering with the j.Release statement being flagged for an array value error is likely due to... panel is initialized
Dim txtkodebo As B4XView = panel.GetView(0)
If txtkodebo... As DBCommand = CreateCommand("getstokitem", Array(ABO.txtkodebarang))
Wait....SetLayoutAnimated(0, 0, 0, ClvBO.AsView.Width, 30dip)
PCLV6.AddItem(25dip, XUI... B4A Question array of views in designer - anuj0sharma    Apr 5, 2011 how can i create an array of views in designer?
e.g. I am using 10 imageViews in a layout file. i want to create an array out of that for easy access in a loop.
regards,... B4A Question set font in View Array - William Lancee (first post)    Jul 27, 2021   (1 reaction) If your learning journey is like mine, you' be delighted by all the goodies that B4X has to offe... Page: 1   2   3   4   5   6   7   |