RE:Depende de la consulta
benjo si paso como parametro una consulta como esta me indica que falta un parametro, en cambio si paso solo el nombre de la tabla tengo esta como retorno, el for que esta incluido es el que estaba usando para verificar los datos del recordset, te agradeceria cualquier ayuda que me pudieses brindar.
'FUNCION QUE VERIFICA SI EL PACIENTE EXISTE O NO EXISTE
Function VAL_PAC()
Dim RSCar As String
Dim confirmacion As Boolean
Dim I As Integer
Dim dpac As DAO.Recordset
RSCar = txtRut.Text
Call sacCaract(RSCar, ".")
Call sacCaract(RSCar, "-")
Call coneccion
Set dpac = base.OpenRecordset("select * form datosper where rut_pac = " & txtRut.Text)
'For I = 1 To dpac.RecordCount
' If dpac!rut_p = RSCar Then
' RSCar = dpac!rut_p
' resp = True
' txtAmat.Text = dpac!APELL_M
' txtApat.Text = dpac!APELL_p
' txtCall.Text = dpac!call'e
' txtCiu.Text = dpac!ciudad
' txtCom.Text = dpac!comuna
' txtPob.Text = dpac!pob_vil
' txtNom.Text = dpac!nombre_p
' txtDept.Text = dpac!depto
' txtFnac.Text = dpac!fecnac_p
' txtNro.Text = dpac!nro
' Exit For
' Else
' dpac.MoveNext
' End If
'next
End Function