根据字段选择使登录表单控件可见/不可见

人气:929 发布:2022-09-22 标签: accessdev

问题描述

当我按下"登录"按钮时,如何在登录表单上显示控件?我的表单上的按钮?

Hi, how can I make controls on my login form visible when I press the "login" button on my form?

推荐答案

嗨尼克,

正常语法如下所示:

Me.ControlName.Visible = True

Me.ControlName.Visible = True

Me.ControlName.Visible = False

Me.ControlName.Visible = False

True显示它们而False隐藏它们。

True shows them and False hides them.

这是你的意思吗?

508