Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/06/2010, 07:40
Avatar de jhonmelguizo
jhonmelguizo
 
Fecha de Ingreso: enero-2008
Ubicación: Medellín - Colombia
Mensajes: 264
Antigüedad: 17 años, 2 meses
Puntos: 6
De acuerdo Respuesta: Captura error inesperados en visual basic

Cita:
Iniciado por GeoAvila Ver Mensaje
aqui hay un ejemplo

Código:
Private Sub CmdGuardar_Click()
On Local Error Resume Next
Set Cxn = New Connection
Dim Lectura As String
Dim FechaR As String
Dim FechaIn As String
Dim FechaEg As String
Me.FrGuardar.Visible = True
Me.LblInformacion.Caption = "Conectando.."
FechaR = Format$(DTFechaRecibo.Value, "yyyy/MM/dd")
FechaIn = Format$(DTIngreso.Value, "yyyy/MM/dd")
FechaEg = Format$(DTEgreso.Value, "yyyy/MM/dd")
Cxn.Open CxnFac
    If Err <> 0 Then
    MsgBox "Ha ocurrido un error en la conexión el programa intentara de nuevo ", vbExclamation, "Error"
    Cxn.Close
    Call CmdGuardar_Click
    End If
Me.LblInformacion.Caption = "Guardando.."
Lectura = "INSERT INTO anticipos values(" & Val(TxtNoRecibo.Text) & ", '" & FechaR & "','" & TxtNombreCliente.Text & "'," & Val(OptTotal.Value) & "," & Val(TxtHabitaciones.Text) & ",'" & FechaIn & "','" & FechaEg & "'," & Val(ChkCheque.Value) & "," & Val(ChkTC.Value) & "," & Val(ChkEfectivo.Value) & "," & Val(TxtQuetzalez.Text) & ",'" & TxtReceptor.Text & "','" & TxtObservaciones.Text & "','0','');"
Cxn.Execute Lectura
    If Err <> 0 Then
    MsgBox "Ha habido un error al guardar los datos, el programa seguira intentando guardarlos ", vbInformation, "Error"
    Cxn.Close
    Call CmdGuardar_Click
    End If
Me.FrGuardar.Visible = False
MsgBox "Los datos se han guardado satisfactoriamente", vbInformation, "Guardado"
End Sub
espero te sirva el ejemplo..

nos vemos..
Me sirvió mucho, gracias...