主题:如何在VB.NET中实现控件数组
我知道VB.NET中没有控件数组机制,但是如果我 想实现像VB6.0中控件数组一样的功能,该如何实现
Private tx() As TextBox
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Integer
For a = 0 To 2
tx(a).Text = ""
Next
tx(0).Focus()
End Sub
就像下面的代码在VB.NET中无法实现,如果我要实现它该怎么修改?
请哪位高手指教一下 本人很想知道
Private tx() As TextBox
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Integer
For a = 0 To 2
tx(a).Text = ""
Next
tx(0).Focus()
End Sub
就像下面的代码在VB.NET中无法实现,如果我要实现它该怎么修改?
请哪位高手指教一下 本人很想知道