如何创建 excel 内置用户窗体
how to create an excel built in userform
如何在 excel 中创建这种内置用户表单?我正在学习 Visual Basic,但找不到创建用户窗体的方法,该用户窗体是在 excel 的 sheet 中构建的,就像这张图片一样。
第 1 步 - 创建这样的用户表单:
第 2 步 - 在工作表中写入此代码:
Private Sub Worksheet_Activate()
UserForm1.Show
End Sub
第 3 步 - 继续阅读,还有许多其他更好的方法 - Best Practices for User Forms in the Ex-Whosebug Documentation.
我认为这是关于 Excel 5.0 对话框 sheet 的。要创建对话框 sheet,请右键单击任何工作sheet 选项卡。在弹出菜单中,select 插入,然后在“插入”对话框的“常规”选项卡上,select MS Excel 5.0 对话框。 Here 是关于它的更多信息
如何在 excel 中创建这种内置用户表单?我正在学习 Visual Basic,但找不到创建用户窗体的方法,该用户窗体是在 excel 的 sheet 中构建的,就像这张图片一样。
第 1 步 - 创建这样的用户表单:
第 2 步 - 在工作表中写入此代码:
Private Sub Worksheet_Activate()
UserForm1.Show
End Sub
第 3 步 - 继续阅读,还有许多其他更好的方法 - Best Practices for User Forms in the Ex-Whosebug Documentation.
我认为这是关于 Excel 5.0 对话框 sheet 的。要创建对话框 sheet,请右键单击任何工作sheet 选项卡。在弹出菜单中,select 插入,然后在“插入”对话框的“常规”选项卡上,select MS Excel 5.0 对话框。 Here 是关于它的更多信息