在 Excel 中使用 VBA 更改 ActiveX 命令按钮的名称

编程入门 行业动态 更新时间:2024-10-24 13:19:11
本文介绍了在 Excel 中使用 VBA 更改 ActiveX 命令按钮的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

参考p>

我正在尝试使用以下代码使用 VBA 更改 ActiveX 命令按钮的名称属性:

设置 shp = ActiveSheet.Shapes(Selection.Name)使用 shp.OLEFormat.Object.Object.Caption = "节点" &Str(NumNodes).Name = "节点" &Str(NumNodes)结束于

我可以更改标题名称,但无法使用上述代码更改名称属性.我需要找到一种方法将字符串与 name 属性的 int (NumNodes) 连接起来.

更新

这是完整的子程序,它复制命令按钮并将其粘贴到特定的单元格位置.创建按钮时也会更改名称和标题等属性.

公共子节点_Button_Duplication()''注释:将节点 1 的按钮复制并粘贴到相应的列将 shp 变暗为形状' 复制节点 1 按钮并粘贴到适当的位置ActiveSheet.Shapes("CommandButton1").Select选择.复制单元格(5, 10 + 7 * (NumNodes - 1) - 1).SelectActiveSheet.Paste选择.ShapeRange.IncrementLeft 47.25Selection.ShapeRange.IncrementTop -13.5设置 shp = ActiveSheet.Shapes(Selection.Name)使用 shp.OLEFormat.Object.Object.Caption = "节点" &Str(NumNodes).Name = "节点" &Str(NumNodes)结束于结束子

解决方案

这是你正在尝试的吗?

设置 shp = ActiveSheet.Shapes(Selection.Name)shp.Name = "节点" &Str(NumNodes)使用 shp.OLEFormat.Object.Object.Caption = "节点" &Str(NumNodes)结束于

跟进

刚刚试了一下,效果很好……

公共子节点_Button_Duication()将 shp 变暗为形状调暗 NumNodesActiveSheet.Shapes("CommandButton1").Select选择.复制单元格(5, 10 + 7 * (NumNodes - 1) - 1).SelectActiveSheet.Paste选择.ShapeRange.IncrementLeft 47.25Selection.ShapeRange.IncrementTop -13.5节点数 = 5设置 shp = ActiveSheet.Shapes(Selection.Name)shp.Name = "节点" &Str(NumNodes)使用 shp.OLEFormat.Object.Object.Caption = "节点" &Str(NumNodes)结束于结束子

更多跟进

试试这个

设置 shp = ActiveSheet.Shapes(Selection.Name)使用 shp.OLEFormat.Object.Object.Caption = "节点" &Str(NumNodes).Name = "节点" &节点数结束于

注意,我把 Str(NumNodes) 改成了 NumNodes?

ActiveX 控件名称不能有空格:)

立即尝试.

快照

Reference

I am trying to change the name property of ActiveX command buttons with VBA with the following code:

Set shp = ActiveSheet.Shapes(Selection.Name) With shp.OLEFormat.Object .Object.Caption = "Node" & Str(NumNodes) .Name = "Node" & Str(NumNodes) End With

I am able to change the caption name, but the name property cannot be changed with the above code. I need to find a way to concatenate a string with an int (NumNodes) for the name property.

UPDATE

This is the full subroutine which copies a command button and pastes it to a specific cell location. Properties, such as the name and caption are also changed upon button creation.

Public Sub Node_Button_Duplication() ' 'Comments: Copies and pastes Node 1's button to the appropriate column Dim shp As Shape ' Copy Node 1 button and paste in appropriate location ActiveSheet.Shapes("CommandButton1").Select Selection.Copy Cells(5, 10 + 7 * (NumNodes - 1) - 1).Select ActiveSheet.Paste Selection.ShapeRange.IncrementLeft 47.25 Selection.ShapeRange.IncrementTop -13.5 Set shp = ActiveSheet.Shapes(Selection.Name) With shp.OLEFormat.Object .Object.Caption = "Node" & Str(NumNodes) .Name = "Node" & Str(NumNodes) End With End Sub

解决方案

Is this what you are trying?

Set shp = ActiveSheet.Shapes(Selection.Name) shp.Name = "Node" & Str(NumNodes) With shp.OLEFormat.Object .Object.Caption = "Node" & Str(NumNodes) End With

FOLLOWUP

Just tried this and it works...

Public Sub Node_Button_Duication() Dim shp As Shape Dim NumNodes As Long ActiveSheet.Shapes("CommandButton1").Select Selection.Copy Cells(5, 10 + 7 * (NumNodes - 1) - 1).Select ActiveSheet.Paste Selection.ShapeRange.IncrementLeft 47.25 Selection.ShapeRange.IncrementTop -13.5 NumNodes = 5 Set shp = ActiveSheet.Shapes(Selection.Name) shp.Name = "Node" & Str(NumNodes) With shp.OLEFormat.Object .Object.Caption = "Node" & Str(NumNodes) End With End Sub

MORE FOLLOWUP

Try this

Set shp = ActiveSheet.Shapes(Selection.Name) With shp.OLEFormat.Object .Object.Caption = "Node" & Str(NumNodes) .Name = "Node" & NumNodes End With

Notice, I changed Str(NumNodes) to NumNodes?

The ActiveX Control Names cannot have spaces :)

Try now.

SNAPSHOT

更多推荐

在 Excel 中使用 VBA 更改 ActiveX 命令按钮的名称

本文发布于:2023-06-09 04:12:28,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/594991.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:按钮   命令   名称   Excel   VBA

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!