Hey everyone,
Is there a way to view database fields without using datagrids. There is a way by using MajDs.Tables("Majors").Rows(0).Item("TimeSlot") but how do you get to the next field.
In the example given the field you are using is TimeSlot.
If you want to go to the next row of data in your table you would change your program from
MajDs.Tables("Majors").Rows(0).Item("TimeSlot")
to
MajDs.Tables("Majors").Rows(1).Item("TimeSlot")
you can use a for loop to iterate through the number of rows that you have in the table...
__________________
Best Regards,
Brian Thuen
http://www.AdvisedSolutions.com