IDE : VS 2008, Platform : .NET 3.5,
Hi,
Here is my DataTable columns :
ID Note Detail
I want to write sth like this :
//below cod
You want to loop on the .Rows, and access the column for the row like q("column")
Just:
For Each q In dtDataTable.Rows strDetail = q("Detail") Next
Also make sure to check msdn doc for any class you are using + use intellisense