I wanted to post some snippets to help us all.
So I went to look through the VB.Net functions, hoping to find some for B4A.
This is beautiful, very useful (unfortunately the description is in Italian):
warning: DO NO USE SOMETHING LIKE:
Dim MyArray() As String
...
Dim Word As String = MyArray(4)
USE:
Dim Word As String = Choose(4, MyArray)
So I went to look through the VB.Net functions, hoping to find some for B4A.
This is beautiful, very useful (unfortunately the description is in Italian):
warning: DO NO USE SOMETHING LIKE:
Dim MyArray() As String
...
Dim Word As String = MyArray(4)
USE:
Dim Word As String = Choose(4, MyArray)