Dear All,
From this tutorial: [B4X] [XUI] CustomListView - lazy loading / virtualization
I create CustomListView which has EditText, CheckBox, ..
I need to copy all items data into array of strings, like the following code:
this code is not right, I need to correct it:
Dim StrArray(100) as string
Dim ValArray(100) as int
.
.
For i = 0 to maxItems
StrArray( i ) = CustomListView...EditText1 ( i ) ' this code not right , I need to correct it.
ValArray( i ) = CustomListView...CheckBox1 ( i ) ' this code not right , I need to correct it.
Next
wait for correct previous codes to copy all items data into Arrays as above.
Thanks in advance.
Best regards
From this tutorial: [B4X] [XUI] CustomListView - lazy loading / virtualization
I create CustomListView which has EditText, CheckBox, ..
I need to copy all items data into array of strings, like the following code:
this code is not right, I need to correct it:
Dim StrArray(100) as string
Dim ValArray(100) as int
.
.
For i = 0 to maxItems
StrArray( i ) = CustomListView...EditText1 ( i ) ' this code not right , I need to correct it.
ValArray( i ) = CustomListView...CheckBox1 ( i ) ' this code not right , I need to correct it.
Next
wait for correct previous codes to copy all items data into Arrays as above.
Thanks in advance.
Best regards