gpt4 book ai didi

vba - 以编程方式运行 "Assign Macro"对话框

转载 作者:行者123 更新时间:2023-12-02 13:19:43 26 4
gpt4 key购买 nike

我正在创建宏工具,允许以编程方式在 Excel 中创建按钮,但最后我需要调用“分配宏”对话框:

enter image description here

让用户选择他想要分配给创建的按钮的宏。我怎样才能实现这一目标?

实际代码:

Dim btn As Shape
Set btn = wsSheetToAddButton.Shapes.AddFormControl(Type:=xlButtonControl, Left:=buttonLocation.Left, Top:=buttonLocation.Top, Width:=128, Height:=75)
With btn
With .TextFrame.Characters
.Caption = buttonText
With .Font
.FontStyle = "Bold"
.ColorIndex = textColor
End With
End With
.Select
End With

最佳答案

选择按钮后添加此内容:

Application.Dialogs(xlDialogAssignToObject).Show

关于vba - 以编程方式运行 "Assign Macro"对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50681944/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com