Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是:
主窗体有 9 个命令按钮和连续的子窗体。单击某个按钮打开其他带有用于输入数量的文本框和两个命令按钮的表单。单击第一个按钮时,我想使用主窗体中按下按钮的标题进行查询。如何获得该按钮标题?
谢谢。
您刚刚单击了按钮,您知道控件的名称,所以我不太明白问题所在,除此之外,这听起来是个很糟糕的主意。
Private Sub cmdClickMe_Click() Debug.Print Me.cmdClickMe.Caption Debug.Print Screen.ActiveControl.Caption End Sub