明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1571|回复: 1

请教一个关于工具条的问题

[复制链接]
发表于 2006-9-16 01:59:00 | 显示全部楼层 |阅读模式
Sub Example_AddToolbarButton()
    ' This example creates a new toolbar called TestToolbar and inserts a
    ' toolbar button into it. The toolbar is then displayed.
    ' To remove the toolbar after execution of this macro, use the Customize Menu
    ' option from the Tools menu.
    
    Dim currMenuGroup As acadMenuGroup
    Set currMenuGroup = ThisDrawing.Application.MenuGroups.Item(0)
    
    ' Create the new toolbar
    Dim newToolBar As AcadToolbar
    Set newToolBar = currMenuGroup.Toolbars.Add("TestToolbar")
    
    ' Add a button to the new toolbar
    Dim newButton As AcadToolbarItem
    Dim openMacro As String
    
    ' Assign the macro string the VB equivalent of "ESC ESC _open "
    openMacro = Chr(3) & Chr(3) & Chr(95) & "open" & Chr(32)
    
    Set newButton = newToolBar.AddToolbarButton("", "NewButton", "Open a file.", openMacro)
    
    
    ' Display the toolbar
    newToolBar.Visible = True
    
End Sub
 
1:上面的代码 可以生成一个工具条,但是关掉生成的toolbar后 ,再运行程序就会出错,
    可能是关掉的toolbar没有卸载完。怎么彻底删除toolbar?
2: 生成的toolbar,上面的按钮只能实现打开、保存等功能,怎么能点击按钮后调用自己
    的函数来实现其他功能?
急切等待您的指点

发表于 2006-9-18 19:56:00 | 显示全部楼层
那是因为已经有了toolbar了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 22:47 , Processed in 0.146751 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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