Basic DataGrid Navigation.
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
I have a simple VB.net app that connects to an access Database. The database has one table ("Chums"). In that table there are 2 columns("Name" & "Sound") There are three records: 1 "Steve" & "Hello.wav" 2 "Fred" & "Goodbye.wav" 3 "Dave" & "Seeya.wav" I want to be able to track the user's movement through the grid, and play the corresponding sound based on the selected record. The sound playing I have a handle on - can someone help me with a code snippet to navigate a DataGrid? Thanks. Steve