MS ACcess 使文本框在按钮单击时可见

Posted

技术标签:

【中文标题】MS ACcess 使文本框在按钮单击时可见【英文标题】:MS ACcess Make textboxes visible upon button click 【发布时间】:2012-06-01 18:56:49 【问题描述】:

在每次单击按钮时,我都希望能够使 4 个文本框和 4 个标签“可见”。我不知道如何使用 VBA 代码来做到这一点。

这是我迄今为止尝试过的: 没有产生错误,但我不知道如何从这里开始。

Private Sub Command36_Click()

Static Counter As Integer
Dim Name As String
Dim Name2 As String
Dim Count As Integer

Counter = Counter + 1

Name = "Label" & Counter
Name2 = "Text" & Counter
Command36.Caption = Name & Name2

For Count = 1 To Count = Counter

Microsoft Access 表单、VBS

【问题讨论】:

【参考方案1】:

我想你的意思是:

Private Sub Command36_Click()
Dim Name As String
Dim Name2 As String
Dim Count As Integer


   For Count = 1 To 4
      Name = "Label" & Counter
      Name2 = "Text" & Counter
      Command36.Caption = Name & Name2
   Next

End Sub

我不太明白上面的意思。

这可能更有用,如果如你所说,你想让某些东西可见:

   For Count = 1 To 4
      Name1 = "Label" & Counter
      Name2 = "Text" & Counter
      Me(Name1).Visible = True
      Me(Name2).Visible = True
   Next

帮自己一个忙,确保为控件提供“真实”名称,而不是 Command36,而是 cmdShowLabel 之类的名称

【讨论】:

感谢您的帮助!我打算在测试运行完成后将名称更改为“真实姓名”。 好主意。还要注意保留字。 Name 特别是对于任何事物来说都是一个危险的名字,所以我希望它只是一个例子。

以上是关于MS ACcess 使文本框在按钮单击时可见的主要内容,如果未能解决你的问题,请参考以下文章

我无法通过文本框在 ms access 数据库中插入数据[关闭]

如何使用多个按钮在 MS Access 表单中使用文本字符串填充文本框?

Crystal Reports 使文本框可见 true false

Jquery Button 使表单可见

web页面鼠标单击文本框在文本框上面show一个div出来.

文本框在 DataGridview 文本框列中不可见