I want to make a button which show certain players from database
For example I have a database with football players from different countries
I want to make a button that allow you to see only players from the team of italy
I want to make a button which show certain players from database
For example I have a database with football players from different countries
I want to make a button that allow you to see only players from the team of italy
If the row names are ordered numbers:
But if you do not want to offend anybody, you’d probably want:
Other than that you’d need to look it up and filter, loop through the whole thing and compare results.
thanks…but that is an array or the datatable named as “group”?
It’s an array of structs. We pick the ones from the DT that match the criteria and add them to an array. That’s what you asked for in the title.
I’d suggest you use an enumerator in the DT struct:
Makes life easier.
The enumerator and the struct could look like so:
Enumerators:
thnx, i will try