I have expand it to load 4 different CSV Files, Works fine.
Unfortunately the Table Click event catch only the Data from the last Table (Item #4, in my Case)
Maybe I'll find a way when I look in the table class.
I have expand it to load 4 different CSV Files, Works fine.
Unfortunately the Table Click event catch only the Data from the last Table (Item #4, in my Case)
Maybe I'll find a way when I look in the table class.
Sub Table1_CellClick(col As Int, row As Int)
Dim tbl As Table = Sender
Dim Value As String = tbl.GetValue(col, row)
ToastMessageShow("Clicked: " & Value, True)
Log("Clicked: " & Value)
End Sub
Now I have added a button. When I click on this I want to see how many lines in all (in my case 4) tables are selected (this is the first step).
I have no idear at the moment.
Later I want to read out the data of the selected cells, but that should not be a problem anymore.