2012-09-22 10 views

Antwort

9

Tim die Antwort zur Verfügung gestellt hat. Sie könnten etwas wie:

Sub test() 
    Dim sPath As String 
    sPath = ActivePresentation.Path 
    If Len(sPath) > 0 Then 
     MsgBox ActivePresentation.Name & vbNewLine & "saved under" & vbNewLine & sPath 
    Else 
     MsgBox "File not saved" 
    End If 
End Sub 
+0

Vielen Dank! Es klappt ... ! – Andrei20193