M
markh
In access/vba any form contains a set of 10 text boxes, named AB1 to AB 10.
In my VBA module i could step through them with the following code:
Dim formcell As textbox
for x - 1 to 10
formcellstr = "AB" $ X
set formcell = forms!form1(formcellstr)
formcell.text = "abcdefg"
next x
Is there anyway i can do this in VB.Net
thanks in advance
Markh
In my VBA module i could step through them with the following code:
Dim formcell As textbox
for x - 1 to 10
formcellstr = "AB" $ X
set formcell = forms!form1(formcellstr)
formcell.text = "abcdefg"
next x
Is there anyway i can do this in VB.Net
thanks in advance
Markh