
25/01/2009, 14:22
|
| | Fecha de Ingreso: noviembre-2008
Mensajes: 49
Antigüedad: 16 años, 6 meses Puntos: 0 | |
busqueda con el metodo find estoy haciendo una busqueda con find
pero creo que me estoy equivocando en la sintaxis
talvez me pueden ayudar
porque me devuelve el nombre del campo no lo que contiene el campo
Private Sub Command1_Click()
With Adodc1.Recordset
.MoveFirst
.Find "Cliente = '" & txtCLIENTE.Text & "'"
If .EOF Then
MsgBox "no encontrado"
Else
txtORDEN.Text = ("ORDEN")
txtFECHA.Text = ("Direccion")
txtDESCRIPCIONDETRABAJO.Text = ("DESCRIPCIONDETRABAJO")
Combo2.Text = ("CONTRATA")
Combo1.Text = ("TECNICO")
txtLIQ.Text = ("LIQ")
txtRECIBEINSTALACION.Text = ("RECIBEINSTALACION")
End If
End With
End Sub |