hacer decrecer una variable en un do while??
Publicado por david (1 intervención) el 13/04/2020 13:50:00
1
2
3
4
5
6
7
8
9
Do While aux < pagos
Dim pendiente As Integer = 10
pendiente = pendiente - 1
Dim row As String() = New String() {"", "", "", "", "", ""}
row = New String() {1 + aux, Math.Round(total), "1", "1", "1", pendiente}
DataGridView1.Rows.Add(row)
aux += 1
Loop
Valora esta pregunta


0