2012-09-22 40 views

Respuesta

9

Tim ha proporcionado la respuesta. Podría usar algo como:

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

¡Muchas gracias! Funciona ... ! – Andrei20193

Cuestiones relacionadas