H o l a:
Te anexo el código
Private Sub cmdEliminar_Click()
'Por.Dante Amor
If ListBox1.ListCount = 0 Then
MsgBox "No hay registros a eliminar"
Exit Sub
End If
If ListBox1.ListIndex = -1 Then
MsgBox "Selecciona el movimiento a eliminar"
Exit Sub
End If
ListBox1.RemoveItem ListBox1.ListIndex
txtTotalDebe = 0
txtTotalHaber = 0
For i = 0 To ListBox1.ListCount - 1
If ListBox1.List(i, 2) <> "" Then
debe = Val(ListBox1.List(i, 2))
Else
debe = 0
End If
If ListBox1.List(i, 3) <> "" Then
habe = Val(ListBox1.List(i, 3))
Else
habe = 0
End If
Tdebe = Tdebe + debe
Thabe = Thabe + habe
Next
txtTotalDebe = Format(Tdebe, "#,##0.00")
txtTotalHaber = Format(Thabe, "#,##0.00")
txtCuadre = Tdebe - Thabe
txtCuadre = Format(txtCuadre, "#,##0.00")
End Sub
' : )
'S aludos. Dante Amor. Recuerda valorar la respuesta. G racias
' : )