Consulta select en VBA Access
Soy novato en VBA Access aunque no tanto que Excel pero estoy intentando hacer un
SELECT * mitabla WHERE idtabla = campotextoformulario
y no tengo forma de que me salga
He empezado con este código, y cuando lo controle, iré un poquito a más:
Private Sub comando52_click()
Dim base As Database
Dim rst As Recordset
Set base = CurrentDb
Set rst = base.OpenRecordset("Select * from AÑADIRRESERVA where IDRESERVA='" & Me.Texto50.Text & "'")
MsgBox rst.Fields("NOMBRE")
rst.Close
Set rst = Nothing
base.Close
Set base = Nothing
End Sub
Si alguien me puede ayudar, estaría muy agradecido.
SELECT * mitabla WHERE idtabla = campotextoformulario
y no tengo forma de que me salga
He empezado con este código, y cuando lo controle, iré un poquito a más:
Private Sub comando52_click()
Dim base As Database
Dim rst As Recordset
Set base = CurrentDb
Set rst = base.OpenRecordset("Select * from AÑADIRRESERVA where IDRESERVA='" & Me.Texto50.Text & "'")
MsgBox rst.Fields("NOMBRE")
rst.Close
Set rst = Nothing
base.Close
Set base = Nothing
End Sub
Si alguien me puede ayudar, estaría muy agradecido.
1 Respuesta
Respuesta
1