|
-
January 21st, 2010, 02:03 PM
#1
CheckBox Object + Array
Is it possible to store the checkbox object into an array? I haven't found anything on this because I dont think you can.
-
January 21st, 2010, 02:21 PM
#2
Re: CheckBox Object + Array
I'm not sure which checkbox you are talking about. Nevertheless if you are talking a CheckBox control you have to understand that it is a .NET class like any other. Hency you can put it any collection structure you wish. For example...
Code:
var boxes = new CheckBox[] { new CheckBox(), new CheckBox() };
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|