B4A Question 2D Array in B4A - makeed0    Aug 3, 2024 how to fill a 2D array(1 to 3,1 to 3) without loops... B4A Question how to fill area in image - sz4t4n    Nov 18, 2019 Hello, i want to create simple "game" for my doughter becouse most of them in play store are full of ads (even if i pay). I just want to know if there is a simple way (maybe bitmapcreator) to fill area on image with one color (like "fill with color" in old windows paint). 85647 to have this result: 85646 My idea is to load simple image (black and white) and fill white area with selected color. Any advise?... B4A Question How to fix error with 2D-array ? - Erel (first post)    Jul 23, 2023   (1 reaction) You cannot use Array keyword to directly create 2d arrays.
You can do something like this:
Sub AppStart (Args() As String)
Dim mat(0, 0) As String = Create2DArrayOfStrings(Array( _
Array As String("a", "b", "c", "d"), _
Array As String("aa", "bb", "cc", "dd"), _
Array As String("aaa... B4A Question 9x9 Grids using 2D array - Erel (first post)    Mar 23, 2023 Post the relevant code and the full error message from the logs.... 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 How to fill B4Xcombobox from JSON data (JSON to ARRAY) ? - Sifu    Aug 7, 2022 /#content
public Sub mapToArray(m As Map) As Object()
Dim arr(m.Size * 2) As Object 'array size...)
Dim jRoot As List = parser.NextArray
Log("jRoot: " & jRoot... B4A Question Help! Getting and using the name of a variable/array? - wonder    Sep 10, 2015 Hi guys! This might be hard to explain, but I'll do my best. Consider the following pseudo-code: Dim a, b, c, d, e, f, g, ... As Int GetUserInput("Which variable? ", VarName) SetVar(VarName, 10) 'Output: '(c = 0) 'Which variable? c '(c = 10) How can I do this without having to do this with lots of IF's or CASE statements? Sub SetVar(VarName as String, Value... If VarName = "c" Then c = value If VarName = "d" Then d = value... B4A Question 2D Array With Different Column Numbers? - Erel (first post)    Jul 16, 2020   (3 reactions) Lists are superior to arrays in most cases, including this case.
Dim List1 As List = Array(Array("00", "01", "02"), Array("10", "11"))
Dim SecondRow() As Object = List1.Get(1)
Log(SecondRow(0))
Note that Array returns a read only list.... B4A Question 2D arrays - ShepSoft (first post)    Jul 9, 2020   (1 reaction) Thanks - I don't smoke anything let alone cigars!... B4A Question 2D Float Array Java to B4A - sorex (first post)    Sep 27, 2019   (1 reaction) a custom type is an option but I guess it's easier to pass a csv string and fill the array like...=Array As vertice(newVertice(1,2,3),newVertice(2,3,1))
Log(cube_vertices(0).x)
Sub newVertice(x... Page: 1   2   3   4   5   6   |