Dim objRow As DataRowDim objDT as New DataTable 'Fill the datatable objDT as per u r requirement. objRow=objDT.NewRow objRow.Item(0)="First" objRow.Item(1)="second" 'Here Item represents the column.The data type of item 'should match with data type of the data table.I 'have used the values First,'Second since I have considered varchar as the data type. objDT.Rows.Add(objRow)