Un altro quesito
ho un report generato in base a una condizione SQL
lo visualizzo in anteprima (acViewPreview)
genero un file pdf e lo apro con Hyperlink con il lettore predefinito
quello che vorrei fare e' non vedere l'anteprima se fosse possibile..
qualcuno ha qualche suggerimento?
Private Sub pulStampaRepo_Click()
Dim myNomePDF As String
Dim myNomeRepo As String
If Not IsNull(Me.txtTitoloReport.Value) Then
myNomeRepo = Left(Me.txtTitoloReport.Value, 40)
Else
myNomeRepo = "Elenco Anagrafiche"
End If
myNomePDF = DammiCartella() & "\PatentandiFile" & Sequencer() & ".PDF"
Me.txtTitoloReport = myNomeRepo
DoCmd.OpenReport "ReportAnagrafiche", acViewPreview, , PV_CondSQL
DoCmd.OutputTo acOutputReport, "ReportAnagrafiche", acFormatPDF, myNomePDF
MsgBox ("Generato file: " & myNomePDF)
Application.FollowHyperlink myNomePDF
End Sub