Hi hope someone can help me with this Please
the Listview don't fill out the form at the bottom
in the design editor I drag the listview down to the bottom
and it look like it is space for one record between bottom of the form and the listview
Regards
Sigster
the Listview don't fill out the form at the bottom
in the design editor I drag the listview down to the bottom
and it look like it is space for one record between bottom of the form and the listview
Regards
Sigster
B4X:
For i = 0 To Cursor.RowCount - 1
Dim tt As person1
Cursor.Position = i
tt.nafn=Cursor.GetString("nafn")
tt.gsm=Cursor.GetString("simi")
ListView1.AddTwoLines2 (tt.nafn,tt.gsm,tt)
Next