如何用EXCEL中命令按钮调用VBA中用户窗口?

2024-11-03 03:29:44
推荐回答(1个)
回答1:

插入一个按钮,在编辑器中添加如下代码:

Private Sub CommandButton1_Click()
userform1.show
End Sub