Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
On Error GoTo err_pdf
Dim Dateiname As String
Dim Zieldatei As String
Dateiname = Application.CurrentProject.Path & "\repTEMP.PDF"
Zieldatei = "D:\" & [Reports]![repBefundung]![txt_headline_rep] & "_" & [Reports]![repBefundung]![Befundungs_Jahr] & ".PDF"
DoCmd.OutputTo acOutputReport, "repBefundung", acFormatPDF, Dateiname
FileCopy Dateiname, Zieldatei
Kill Dateiname
MsgBox ("Report wurde als PDF exportiert: " & Zieldatei)
GoTo noerr
err_pdf:
MsgBox "Fehler PDF-Ausgabe" & " " & Err.Number & " " & Err.Description
noerr:
On Error GoTo 0
Diesen Code benutze ich.Me![fm_add_fzgtyp].Visible = Not Me![fm_add_fzgtyp].Visible
DoCmd.Close acForm, "Formularname"
DoCmd.GoToRecord , ,acNewRec
Public Sub listforms()
Dim obj As Form
For Each obj In Application.Forms
Debug.Print obj.Name
Next
End Sub