包含 Excel 文件的 AutoCAD 文件的路径
我在 AutoCAD (.dwg) 文件中嵌入了 Excel (.xls) 文件。 使用 VBA(在 Excel 下)我想提取包含它的文件的路径(AutoCAD 文件的路径)。
I have an embedded Excel (.xls) file in a AutoCAD (.dwg) file.
Using VBA (under Excel) I want to extract the path for the file that contains it (the path for AutoCAD file).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 Excel 嵌入到 AutoCAD 文件中,则您将需要与 AutoCAD 兼容的 API 来读取宿主 AutoCAD DWG 文件。在这里搜索 AutoCAD API,但基本上有 AutoCAD(惊喜!)和开放设计联盟。
如果您直接访问嵌入的 Excel 文件,那么它无法知道它已嵌入到任何内容中,因此它不会知道宿主 AutoCAD DWG 文件的路径。
If the Excel is embedded in an AutoCAD file then you will need an AutoCAD-compatible API to read the host AutoCAD DWG file. Search here for AutoCAD APIs but basically there are AutoCAD (surprise!) and the Open Design Alliance.
If you are going straight to the embedded Excel file then it has no way of knowing that it has been embedded in anything so it won't know that path of the host AutoCAD DWG file.