Hello Every one I m stuck in one problem but I don't how to resolve it
I have dataTable InvoiceViewWithUserDataTable related to view : InvoiceWithUserView (database)
I want to add 2 columns in run time to datatable InvoiceViewWithUserDataTable
InvoiceViewWithUserDataTable .Columns.Add("IntegrationSuccessed", GetType(Integer))
InvoiceViewWithUserDataTable .Columns.Add("ResponseGet", GetType(String))
InvoiceViewWithUserDataTable.FillMyData(startindex, lineNumber)
Foreach(var row in InvoiceViewWithUserDataTable)
{
row.ResponseGet (error)
row.IntegrationSuccessed (error)
}
but the in results I can't get the value for this 2 column even if my stored pro return them