Show number of database records in an label?!

Fox

Active Member
Licensed User
Longtime User
How can i show the number of records of an Database in an label?
 

Fox

Active Member
Licensed User
Longtime User
Sorry Erel i mean how you can i show on wich position is the entry in the table. That was what i mean sorry for my wrong question.
 
Last edited:
Upvote 0

Merlot2309

Active Member
Licensed User
Longtime User
Hello,

When I understand you correctly the following should work:

Sub ListView_ItemClick (Position As Int, Value As Object)
ToastMessageShow(Position, True)
End Sub

Counting starts at zero.
This only works for rows in a ListView.
Helen.
 
Upvote 0
Top