Acceder a informes

Por favor, ¿ hay forma de acceder a informes de Access desde Visual Basic ?
¿ Como ?

1 respuesta

Respuesta
1
Private Sub Form_Load()
Dim AccessApp As Access.Application
Set AccessApp = New Access.Application
With AccessApp
.Visible = True
.OpenCurrentDatabase "My.mdb", False
'.DoCmd.OpenReport "repMyReport1", acViewPreview
.DoCmd.OpenReport "repMyReport2", acViewNormal
.Quit
End With
Set AccessApp = Nothing
End Sub
Suerte!

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas