gpt4 book ai didi

VBA 幻灯片。如何获取文件的当前目录路径到 VBA 中的字符串?

转载 作者:行者123 更新时间:2023-12-04 13:52:42 25 4
gpt4 key购买 nike

VBA 幻灯片。如何设置环境当前目录?

我也试过这个代码:

Sub test()
Dim sPath As String
sPath = ActiveWorkbook.Path
MsgBox sPath
End Sub

而是说: Object required
请帮我让它工作......

最佳答案

蒂姆已经给出了答案。你可以使用类似的东西:

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

关于VBA 幻灯片。如何获取文件的当前目录路径到 VBA 中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12546181/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com