Match views

nithinvb

New member
Joined
May 28, 2005
Messages
1
Programming Experience
Beginner
In a typical sports league, I have the fields such as date, round, team , referee , venuee in the Match class.

I want to have Match Views (by date, round, team, referee and venue). Can you please tell me how to get this in vb.net.
 
Retrieve your data into a DataTable. You can then use the DataTable.Select method to get an array of DataRows that match particular criteria. Alertnatively, you can create a DataView for the DataTable. This can be done by creating a new DataView using your DataTable in the constructor or by getting a reference to the DefaultView property of the DataTable. You can then use the RowFilter property to get just the rows you want.
 
Back
Top