B4A Question Filling Arrays - The Easy Way? - sterlingy    Apr 4, 2013 I know that a single dimensional array Grid() can be populated with Grid = Array As (1,2,5,3,8,4)
I need to fill a two dimensional Array Grid(,)
Is there a similar quick method for multi-dimensional arrays?
-Sterling... B4A Question Filling Arrays - Johan Schoeman    May 7, 2014 Is there a quick way to fill all the elements of an array with the same value when declaring the array such as for example
Dim A(10) As Int = 7
or
Dim A(10,10) As String = "hello"... B4A Question Filling 14 Arrays of 195 values takes over 40s, is it "Normal"? - Cableguy    Jan 18, 2016 , 30 to be exact
Of these 30 ComboBoxes ( a Lib from ML), 14 are being filled one by one by the items of a List...
My code works OK, but it takes about 40s to fill the 14 Combos, is this "Normal... B4A Question Filling an array - bluedude    Dec 12, 2010 Hi,
I'm trying to fill an array by doing this:
for i=0 to 10
arrData=Array as string ("test")
next i
The function description in B4A says:
Days=Array as string ("Sunday","Monday"...)
However, I need to do this in a for loop. I'm trying to create my own Split command.
It seems not to work, how to do this?... B4A Question Fill an array - Erel (first post)    Dec 19, 2017   (1 reaction) Tip: prefer Lists over arrays.... B4A Question Filling string array question - Erel (first post)    Mar 5, 2013 List documentation: Basic4android - Collections (Core)
Your code looks correct.... B4A Question How to fill B4Xcombobox from JSON data (JSON to ARRAY) ? - Sifu (first post)    Aug 11, 2022 Hello,
I have an additional question. How can I let the headtext be like "Choose album". A... B4A Question Convert to B4A - Johan Hormaza    Apr 6, 2022 byte;
Arrays.fill(this.cAmount, (byte) 32);
Arrays.fill(this.cCurrencyCode, (byte) 32);
Arrays.fill(this.cAmount2, (byte) 32);
Arrays.fill(this.cCurrencyCode2, (byte) 32);
Arrays.fill(this.cOperation, (byte) 32);
Arrays.fill(this.cTenderType, (byte) 32);
Arrays.fill(this.cReaderType, (byte) 32);
Arrays.fill(this.cCustomerPresent, (byte... B4A Question Set numerous variables to a specific number or text, Must be simple but I'm brain dead - Daestrum (first post)    Aug 6, 2024   (2 reactions) or with javaobject
Dim Arrays As JavaObject
Arrays.InitializeStatic("java.util.Arrays").RunMethod("fill",Array(PS1,0))
then you dont need to know the size for the loop... B4A Question 2D Array in B4A - makeed0    Aug 3, 2024 how to fill a 2D array(1 to 3,1 to 3) without loops... Page: 1   2   3   4   5   6   7   |