明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2886|回复: 9

在VB中,怎样编程,能使AutoCAD全屏显示?

[复制链接]
发表于 2004-5-14 10:53:00 | 显示全部楼层 |阅读模式
在VB中,怎样编程,能使AutoCAD全屏显示?
发表于 2004-5-14 14:03:00 | 显示全部楼层
'****************************************
' 连接到AutoCAD应用程序
'****************************************
Dim acadApp As AcadApplication
Set acadApp = GetObject(, "AutoCAD.Application")
If Err Then
Err.Clear
Set acadApp = CreateObject("AutoCAD.Application")

If Err Then
MsgBox Err.Description
Exit Sub
End If
End If
'****************************************
' 设置AutoCAD活动文档
'****************************************
Dim acadDoc As AcadDocument
Set acadDoc = acadApp.ActiveDocument '****************************************
' 使AutoCAD全屏显示
'****************************************
acadDoc.SendCommand "_zoom" & Chr(13) & "_e" & Chr(13)

 楼主| 发表于 2004-5-14 14:43:00 | 显示全部楼层
谢谢拉
发表于 2004-5-14 21:03:00 | 显示全部楼层
应该使用纯VB方法才对啊,最后一句改为:
acadApp.ZoomExtents
发表于 2004-6-4 10:34:00 | 显示全部楼层
这个也叫全屏?
发表于 2004-6-4 10:36:00 | 显示全部楼层
呵呵,可能有两种理解吧,一种是显示所有的图形,另一种是ACAD的菜单和状态栏之类的不显示。
发表于 2004-6-4 12:14:00 | 显示全部楼层
还有一种理解:把整个AutoCad的窗口最大化?
发表于 2004-6-4 12:22:00 | 显示全部楼层
对CAD2005,可再加一行代码:


acadDoc.SendCommand "_CleanScreenON "
发表于 2004-6-4 20:02:00 | 显示全部楼层
ahlzl发表于2004-6-4 12:22:00对CAD2005,可再加一行代码: acadDoc.SendCommand \"_CleanScreenON \"
SendCommand 是什么啊?是acadDoc的方法吗?为什么在cad的帮助和Active开发指南
中找不到?
发表于 2004-6-4 20:04:00 | 显示全部楼层
SendCommand 从 VB 或 VBA 应用程序向文档发送命令字符串以进行处理。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 05:47 , Processed in 0.186508 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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