在用户表单之间来回切换

发布于 2024-12-09 14:36:31 字数 358 浏览 0 评论 0原文

大家好,我的用户,我有一个上一个和一个下一个按钮 用户窗体 1 上的上一个按钮包含一个下一个按钮,其代码

userform1.hide
userform2.show

在用户窗体 2 上看起来像这样 我有一个看起来像这样的上一个按钮,

userform2.hide
userform1.show

但是当我返回到用户窗体 1 并前进到用户窗体 2 时,我收到一条错误消息,指出这一点。

运行时错误“400”:

表单已显示;无法模态显示。

无论如何,我可以解决这个问题或创建一个 if 语句来帮助我现在迷失方向。感谢您的帮助

Hello everyone on my userfrom I have a previous and a next button
the previous button on userform 1 contains a next button which the code looks something like this

userform1.hide
userform2.show

on userform 2 I have a previous button that looks like this

userform2.hide
userform1.show

but when I go back to userform1 and foreward to userform 2 I get an error message that states this.

run-time error '400':

Form already displayed; can't show modally.

is there anyway I can fix this or create an if statement to help I am lost right now. Thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染墨丶若流云 2024-12-16 14:36:31

先隐藏,后显示。

userform1.Hide
userform2.Show

另外,在表格中,您可以说我:

Me.Hide
UserForm2.Show

Hide first, then show.

userform1.Hide
userform2.Show

Also, within the form, you could say ME:

Me.Hide
UserForm2.Show
亢潮 2024-12-16 14:36:31

工具箱中类似“多页”的东西在这里也很少见!

Something like "Multipage" in the toolbox would also be handful here !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文