Private Sub cmd_Click()
On Error GoTo Error
frmBuscar.Show vbModal
If MsgBox("¿Desea Cambiar El Cliente?", vbCritical + vbYesNo) = vbYes Then
If idCliente = 0 Or tIndex = 0 Then Exit Sub
Call db1.updCliente(tIndex, idCliente)
MsgBox "El Cliente a sido cambia con exito", vbInformation
End If
Call SetData(tIndex)
Exit Sub
Error:
MsgBox "Error", vbInformation
End Sub