R
Rich
Hello,
I have a form with 5 textboxes named txt0, txt1, txt2,
txt3, tx4.
In VB6 I could iterate through these with
For i = 0 to 4
debug.print Me.controls("txt" & i).Name
Next
In dotNet, I can't seem to do that.
Console.WriteLine(Me.Controls("txt" & i).Name)
Could someone share how to do this in dotnet vb?
Thanks,
Rich
I have a form with 5 textboxes named txt0, txt1, txt2,
txt3, tx4.
In VB6 I could iterate through these with
For i = 0 to 4
debug.print Me.controls("txt" & i).Name
Next
In dotNet, I can't seem to do that.
Console.WriteLine(Me.Controls("txt" & i).Name)
Could someone share how to do this in dotnet vb?
Thanks,
Rich