Heppy Active Member Licensed User Longtime User Apr 19, 2018 #1 Hi. How to declare global array of int how const. Thanks. In Delphi const constante: Array [0..100] of Integer=(0,0.........................)
Hi. How to declare global array of int how const. Thanks. In Delphi const constante: Array [0..100] of Integer=(0,0.........................)
derez Expert Licensed User Longtime User Apr 19, 2018 #2 Have you read the documentation ? find it here https://www.b4x.com/b4a.html Upvote 0
Heppy Active Member Licensed User Longtime User Apr 19, 2018 #3 Thanks, but. Array with dimensions Dim C(0,0,0,0....) as int. Ok But Dim c((0,0,0),(0,0,0)..........) Multiarray? Upvote 0
Thanks, but. Array with dimensions Dim C(0,0,0,0....) as int. Ok But Dim c((0,0,0),(0,0,0)..........) Multiarray?
Heppy Active Member Licensed User Longtime User Apr 19, 2018 #4 Ok. I found the response: https://www.b4x.com/android/forum/threads/filling-arrays-the-easy-way.28006/#post-162302 Upvote 0
Ok. I found the response: https://www.b4x.com/android/forum/threads/filling-arrays-the-easy-way.28006/#post-162302
MarkusR Well-Known Member Licensed User Longtime User Apr 19, 2018 #5 some docu you find in beginners guide v3 10.3.2 Array variables 2 dimensional array B4X: Public Matrix(3, 3) As Double runtime array one dimensional B4X: Public Name() As String Name = Array As String("Miller", "Smith", "Johnson", "Jordan") Upvote 0
some docu you find in beginners guide v3 10.3.2 Array variables 2 dimensional array B4X: Public Matrix(3, 3) As Double runtime array one dimensional B4X: Public Name() As String Name = Array As String("Miller", "Smith", "Johnson", "Jordan")
LucaMs Expert Licensed User Longtime User Apr 19, 2018 #6 QUIZ: and If you need to declare a multi-dimensional array as parameter of a routine (function)? Upvote 0
Heppy Active Member Licensed User Longtime User Apr 19, 2018 #7 Yes don't want save in SQL. Traduction for one program PC. It's easy an fast. Upvote 0
klaus Expert Licensed User Longtime User Apr 19, 2018 #9 ... and If you need to declare a multi-dimensional array as parameter of a routine (function)? Click to expand... Sub MySub(TwoDimensions(,) As Int ThreeDimentions(,,) As Int) As Int (,) The return Array is two dimensional. Upvote 0
... and If you need to declare a multi-dimensional array as parameter of a routine (function)? Click to expand... Sub MySub(TwoDimensions(,) As Int ThreeDimentions(,,) As Int) As Int (,) The return Array is two dimensional.