G
Guest
Yellow to al
I’m trying to do edit a row of a datatable
Dim dataTable As New DataTable("Vencimento"
I create four columns
Dim colWork As New DataColumn("ABONO", GetType(String)
colWork.Caption = "Abono
dataTable.Columns.Add(colWork
colWork = New DataColumn("VALORAB", GetType(String)
colWork.Caption = "Valor
dataTable.Columns.Add(colWork
colWork = New DataColumn("DESCONTO", GetType(String)
colWork.Caption = "Desconto
dataTable.Columns.Add(colWork
colWork = New DataColumn("VALORDES", GetType(String)
colWork.Caption = "Valor
dataTable.Columns.Add(colWork
Them I populate the first tow columns with a For, like this
For I as string = 1 To
row = dataTable.NewRow(
row("ABONO") = "Ret. Efectiva
row("VALORAB") = "10,00
dataTable.Rows.Add(row
Nex
This code create three equal lines, and the columns “DESCONTO†and “VALORDES†have the null expressio
What I want to do now is, fill the columns “DESCONTO†and “VALORDESâ€
With “IRS†and “5,00†strings
The out put must be like thi
Abono Valor Desconto Valo
Ret. Efectiva 10,00 IRS 5,0
Ret. Efectiva 10,00 IRS 5,0
Ret. Efectiva 10,00 IRS 5,0
There’s any one how can help me
Thank
Ana Rita
I’m trying to do edit a row of a datatable
Dim dataTable As New DataTable("Vencimento"
I create four columns
Dim colWork As New DataColumn("ABONO", GetType(String)
colWork.Caption = "Abono
dataTable.Columns.Add(colWork
colWork = New DataColumn("VALORAB", GetType(String)
colWork.Caption = "Valor
dataTable.Columns.Add(colWork
colWork = New DataColumn("DESCONTO", GetType(String)
colWork.Caption = "Desconto
dataTable.Columns.Add(colWork
colWork = New DataColumn("VALORDES", GetType(String)
colWork.Caption = "Valor
dataTable.Columns.Add(colWork
Them I populate the first tow columns with a For, like this
For I as string = 1 To
row = dataTable.NewRow(
row("ABONO") = "Ret. Efectiva
row("VALORAB") = "10,00
dataTable.Rows.Add(row
Nex
This code create three equal lines, and the columns “DESCONTO†and “VALORDES†have the null expressio
What I want to do now is, fill the columns “DESCONTO†and “VALORDESâ€
With “IRS†and “5,00†strings
The out put must be like thi
Abono Valor Desconto Valo
Ret. Efectiva 10,00 IRS 5,0
Ret. Efectiva 10,00 IRS 5,0
Ret. Efectiva 10,00 IRS 5,0
There’s any one how can help me
Thank
Ana Rita