How can i create list of textboxes in vb2012 to be like textbox(0).text textbox(1).text
t3cho 0 Newbie Poster
Recommended Answers
Jump to PostDim textbox As New ArrayList
Jump to PostAnd if you want to attach event handlers to the textboxes just do
AddHandler <event>, AddressOf <subname>
as in
AddHandler TextBox1_TextChanged, AddressOf MyHandlerSub . . . Private Sub MyHandlerSub(sender As System.Object, e As System.EventArgs)
You can assign the same handler to all …
Jump to Post@oussama 1: your code is a bit incorrect.
I would have corrected it, but found a good post here on this site, with an answer of the Reverend himself!
All 9 Replies
oussama_1 39 Posting Whiz in Training
t3cho 0 Newbie Poster
oussama_1 39 Posting Whiz in Training
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
t3cho 0 Newbie Poster
oussama_1 39 Posting Whiz in Training
ddanbe 2,724 Professional Procrastinator Featured Poster
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
oussama_1 39 Posting Whiz in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.