Re: for next and textboxes
what exactly are you trying to do?
Re: for next and textboxes
Welcome to the forums. :wave:
What is it that you are trying to do? Just loop through your textboxs?
Re: for next and textboxes
Me.Controls(index/name) returns a control, youre trying to put an Integer value in its place. I assume you want to set it to the textboxes textvalue:
vb.net Code:
dim i as integer
for i = 1 to 10
me.controls("textbox" & i ).Text = i.ToString()
next i
Re: for next and textboxes
sorry for my late reply guys, but i haven't had time to continue working on the project.
thanks for replying, i will try Atheist's method, it seems to be doing what i'm trying to accomplish