Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/04/2008, 07:59
Avatar de ginitofl
ginitofl
 
Fecha de Ingreso: diciembre-2006
Ubicación: Lima Perú
Mensajes: 349
Antigüedad: 18 años, 4 meses
Puntos: 22
Re: 2 problemas valor null y datareport

Hola Analoyra prueba de esta manera:

Código PHP:
aux InputBox("Ingrese clave a buscar")
txtClave.Text Format(aux"00")
Rs.Open "SELECT * FROM comprobante WHERE comp_clave like '" txtClave.Text "'"cnadOpenStaticadLockOptimistic

If Rs.RecordCount 1 Then
MsgBox("cliente no encontrado, desea ingresarlo?"vbYesNo"Tipo Comprobante")
If 
vbYes Then
txtClave
.SetFocus
Else
Cancel True

End 
If
Else
txtClave.Text "" Rs(0)
TxtDesc.Text "" Rs(1)
If 
Rs(3) = "" Then
Txtsigno
.Text ""
Else
Txtsigno.Text "" Rs(3)

If 
Rs(2) = "" Then
TxtSigla
.Text ""
Else
TxtSigla.Text "" Rs(2)
End If
End If
End If
Rs.Close 
Saludos.

Última edición por ginitofl; 23/04/2008 a las 08:01 Razón: correccion