move to the last row at a table

Georg

Member
Licensed User
Longtime User
Hi

i have a programm Load xx.csv in a table an when i show the Form the table should scroll to the last row if it is outside the screen. I couldn't find a code for that in the Hel and in the forum. Someone can help?

Georg
 

dennychuang

Member
Licensed User
how to display chinese characters from sqlite3

Howdy,

I'm running chinese Windows OS and could not display chinese properly using the sqlite3 data file. I have downloaded .net cf (chinese version) V2 and I'm wondering if I need to have a different SQLdesktop.dll with double-byte character support? where can I find it?

Attached is my screen capture.

Please give me a direction... Thanks!
 

willisgt

Active Member
Licensed User
Georg, it's not possible (as far as I know) to cause the table to scroll to a given position. You can, however, cause a cell on the last row to become the selected cell. I've observed that this has basically the effect that you're looking for.

B4X:
   table1.SelectCell( table1.ColName(0), table1.RowCount - 1 )

Gary
 
Top