访问工作表上绘制的标签
我直接在 Excel 工作表上绘制一个简单的标签控件。但我似乎找不到任何方法通过 VBA 编辑器中的代码访问它。这可能吗?
I draw a simple label control directly onto the excel worksheet. But I can't seem to find any way to access it via code in the VBA editor. Is this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能绘制了 ActiveX 标签或 Forms 标签。如果它是工作表上的第一个标签,则以下代码将采用默认的“label1”名称,并且 objActiveXLabel 或 objFormslabel 将引用您的控件
您还可以在插入标签时尝试使用 VBA 记录器记录宏,因为这将为您提供指向标签类型的指针,以及如何操作标签
You may have drawn an ActiveX label or a Forms label. If it was the first label on the sheet then the following code will pick up the default "label1" name and either objActiveXLabel or objFormslabel will refer to your control
You could also experiment recording macros with the VBA recorder when inserting labels as this will give you pointers to the label type, and how to manipulate the label