我是编程新手。我正在学习视觉基础。我正在使用 Visual Basic 2008,我需要以下代码的帮助:
Private Sub Timer1_Tick(ByVal sender As System.Object....
Dim i As New Integer
Dim nrnote As New Integer
nrnote = TextBoxnrnote.Text
For i = 1 To nrnote
TextBox.i.Show()
Next
Timer1.Stop()
上面的代码导致以下错误:
“我”不是“System.Windows.Forms.TextBox”的成员。
nrnote
是应该出现的文本框的最大数量。例如,如果我输入nrnote = 5
,则文本框 1、2、3、4 和 5 应该在表单上可见。