Android Question Tabular view

Anirban Sen

Member
Licensed User
I am running following sql query:
cursor1 = Sql1.ExecQuery ("Select EndUserName, Quantity, Amount from BauxiteSales group by EnduserName")

How do I show the output into a tabular view? Also, is it possible to show the output numeric fields i.e. Quantity and Amount properly formatted as in ###,###.##?
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
Search for tableview

You can Format numbers with numberformat
 
Upvote 0
Top