Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > Access数据库-模块/函数/VBA

Access和Excel的按钮图标对应的编码(FaceId)分别是多少?

时 间:2016-09-26 08:31:38
作 者:杜超   ID:16058  城市:江阴
摘 要:2003,2010版显示的位置不同,如下图
正 文:

点击下载此附件


图   示:




执行代码:
Sub ShowFaceIDs()
    Dim NewToolbar As CommandBar
    Dim NewButton As CommandBarButton
    Dim i As Integer, IDStart As Integer, IDStop As Integer

    ' Delete existing FaceIds toolbar if it exists
    On Error Resume Next
    Application.CommandBars("FaceIds").Delete
    On Error GoTo 0

    ' Add an empty toolbar
    Set NewToolbar = Application.CommandBars.Add _
                     (Name:="FaceIds", temporary:=True)
    NewToolbar.Visible = True

    ' Change the following values to see different FaceIDs
    IDStart = 1
    IDStop = 800

    For i = IDStart To IDStop
        Set NewButton = NewToolbar.Controls.Add _
                        (Type:=msoControlButton, ID:=2950)
        NewButton.FaceId = i
        NewButton.Caption = "FaceID = " & i
    Next i
    NewToolbar.Width = 600
End Sub



Access软件网官方交流QQ群 (群号:483923997)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助