Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
8answers
5k views

What's the simplest .NET equivalent of a VB6 control array?

Maybe I just don't know .NET well enough yet, but I have yet to see a satisfactory way to implement this simple VB6 code easily in .NET (assume this code is on a form with N CommandButtons in array ...
1
vote
2answers
112 views

How to bind a function to Click event of each control in an array of controls in C#

When you create an array of controls in C#, how can you bind a function that receives the index of the clicked button to their click event? Here's some code solely for better understanding. Somewhere ...
1
vote
1answer
1k views

visual basic 2008 control arrays

I'm looking at controlling properties of an array of buttons in VB 2008 (express). I have been looking at the sample code from a whitepaper at MS, and it kind of makes my head spin compared to what ...
1
vote
4answers
469 views

How can I get the array index of a given object in C# with control arrays?

I am dynamically adding a bunch of controls to a form. Each control calls the same method, and in that method I need to know the array index of the the control that performed the action. CheckBox[] ...
0
votes
4answers
68 views

Cannot create button array in silverlight?

This is the code i using, but i not sure why it can be implement via the way i done in window form. Button[] btnMonday = new Button[20]; string[] timeslot = { "08:00 AM", "08:30 AM", ...
0
votes
2answers
842 views

How to create an array of buttons in C++

I'm using C++ in VS2005 and have an 8x8 grid of buttons on a form. I want to have these buttons in an array, so when I click on any of them it will open the same event handler (I think that is what ...