明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1316|回复: 2

同时开着两个AutoCAD时,VB如何处理 @_@!

[复制链接]
发表于 2004-11-16 20:27:00 | 显示全部楼层 |阅读模式

If AutoCAD is running, the GetObject function will retrieve the current AutoCAD Application object. When running multiple sessions of AutoCAD, the GetObject function will return the first instance of AutoCAD in the Windows Running Object Table. See the Microsoft Visual Basic documentation for the Running Object Table (ROT) and the GetObject function (for more information about verifying the session returned by GetObject).

我的问题是如何在running multiple sessions of AutoCAD时得到当前的 AutoCAD

而不是the first instance of AutoCAD in the Windows Running Object Table

还请各位帮忙指点迷津,我先谢谢大家了!!!

我的VB调用AutoCAD 方法如下

Function GetAcadApp()
Dim AcadApp As Object '定义一个对象
On Error Resume Next
Set GetAcadApp = GetObject(, "AutoCAD.Application")
If Err Then '如果没有一个AutoCAD副本在运行
Err.Clear
Set GetAcadApp = CreateObject("AutoCAD.Application")
AcadApp.Visable = True '启动一个AutoCAD副本并设为可见
If Err Then
MsgBox Err.Description '如果失败,给出错误提示
Exit Function
End If
End If
End Function

 楼主| 发表于 2004-11-17 12:45:00 | 显示全部楼层
没有办法么......
发表于 2004-11-17 16:25:00 | 显示全部楼层
不明白什么意思
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-27 23:57 , Processed in 0.171744 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表