The following code works fine:
----------------------------------------------------------------------
Cursor = SQL1.ExecQuery("SELECT * FROM register order by points desc, name")
For i = 0 To Cursor.RowCount - 1
Cursor.Position = i
ListView1.AddSingleLine(Cursor.getString("name") & " " &
Cursor.GetString("points"))
Next
Cursor.Close
----------------------------------------------------------------------
Now, all I need is to align the second column to the extreme right and the first column staying on the left side of the ListView. Any ideas?
----------------------------------------------------------------------
Cursor = SQL1.ExecQuery("SELECT * FROM register order by points desc, name")
For i = 0 To Cursor.RowCount - 1
Cursor.Position = i
ListView1.AddSingleLine(Cursor.getString("name") & " " &
Cursor.GetString("points"))
Next
Cursor.Close
----------------------------------------------------------------------
Now, all I need is to align the second column to the extreme right and the first column staying on the left side of the ListView. Any ideas?