Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试做一个简单的代码,当我从 excel 电子表格中的按钮调用用户表单时,使我的标签变为粗体。
Private Sub Label1_Load () Label1.Font.Bold = True end sub
但是,Activate 不起作用,加载和 Initialized 也不起作用。我是 VBA 的新手,我一直在努力寻找和回答,但我一直找不到。
正如 KazJaw 和 Siddharth Rout 所说,Label1_Load () 永远不会被触发,因为标签没有 load() 事件。但是一个 UserForm 有一个类似的方法 Initialize():
Private Sub UserForm_Initialize() Label1.Font.Bold = True End Sub
在 VBA Excel 中。