Hello Guys,

This is my 1st Post in Vb.Net Forum so please kindly bare .

From last week I started working on Vb.Net 2005 from Vb 6.0. Now I want to get the information that What is difference between Recordset of VB & Dataset of VB.Net ? Can I have value from dataset which we used to get from Vb recordset eg.
VB Code:
  1. rs.Fields(0).Value
. Actually I want to ask that whether I can get value from VB.Net dataset because when I try to write
VB Code:
  1. MessageBox.Show(dsGetCostCenters.Tables(0).Rows(0).ToString)
it gives me result "System.Data.DataRowCollection".

So how to get value from dataset ?