Guyz, i need your help. How will create an array of checkbox, I dont know to create it on vb.net but as far as i know in vb6 you're just going to create a toolbox then if you copy and paste it,it will automatically ask if you want to create an array of it but I really nid it in vb.net, I want to create 5 checkboxes,for example the name of the checkbox would be checkbox then they're indexes would be checkbox(1),checkbox(2),checkbox(3),checkbox(4),checkbox(5). I tried it to write in codes but something is wrong,the program can't understand what just I did,here's my code. Hope you helped me here!Im going to wait..

Dim chkcount As SByte
        chkcount = 1

        While chkcount <> 5
            chk(chkcount).enabled = True
            chkcount += 1

        End While

Recommended Answers

All 2 Replies

>How will create an array of checkbox

Dim ChArray(3) as CheckBox
'Assign reference of each checkbox
ChArray(0)=CheckBox1
ChArray(1)=CheckBox2
ChArray(2)=CheckBox3
ChArray(3)=CheckBox4

thanx a lot! ^_^

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.