VB.NET
’Populate the dataset
Dim dc As DataColumn
For Each dc In ds.Tables(0).Columns
ListBox1.Items.Add(dc.ColumnName)
Next
C#
//Populate the Dataset
foreach (DataColumn dc in ds.Tables[0].Columns)
{
ListBox1.Items.Add(dc.ColumnName);
}
VB.NET
’Populate the dataset
Dim dc As DataColumn
For Each dc In ds.Tables(0).Columns
ListBox1.Items.Add(dc.ColumnName)
Next
C#
//Populate the Dataset
foreach (DataColumn dc in ds.Tables[0].Columns)
{
ListBox1.Items.Add(dc.ColumnName);
}
Fax: +1 919.573.0306
US: +1 919.481.1974
UK: +44 20 7084 6215
Toll Free (USA):
1-888-9DOTNET
Share with