B4J Question [Solved] B4XTable data after "Search"

giannimaione

Well-Known Member
Licensed User
Longtime User
Hi,

i have a B4XTable and fill it (all ok!)
now i type into "Search Field" - example "cherokee" - and B4XTable work very well
in upper left i see "1 to 35 (more available)"

now, how to detect which are 35 records selected after "search"

maybe i have to manage sub
B4X:
Sub B4XTable1_DataUpdated
 

giannimaione

Well-Known Member
Licensed User
Longtime User
solved
B4X:
Sub B4XTable1_DataUpdated
Dim o() As Object = B4XTable1.BuildQuery(False) 'True to include the page LIMIT in the query.
Dim rs As ResultSet = B4XTable1.sql1.ExecQuery2(o(0), o(1))
End Sub
 
Upvote 0
Top