我有一个 Excel-VBA 用户表单,用于获取用户输入。我需要在发生错误时显示此用户表单,以便用户可以重新定义输入值。
伪代码:
Sub ()
userform.Show
Call Execute
End Sub
Sub Execute()
Validate the input
If input is wrong
MsgBox "reselect the input"
-here I need to disply the userform-
End sub
我试过GoTo Userform
这给了我一个标签未定义的错误。有什么建议么?