我曾经在我的一个项目中使用一个模块来格式化excel工作簿中所有用户表单的文本框,代码看起来像:
Sub TxtBx(i As Integer)
Dim uf As UserForm
For Each uf In UserForms
With uf("TextBox" & i)
If .Text Like "" Then
......................................
现在我将我的项目移动到一个应用程序,我需要相同的模块进行格式化。那么在 Windows 窗体应用程序中怎么说:
Module Module1
Sub TxtBx(i As Integer)
Dim f As System.Windows.Forms.Form
For Each f As System.Windows.Forms
With f("TextBox" & i)
.....................