Hello again...
This is my problem :
I have a lot of textboxes in names : d1, d2, d3, d4, d5, d6, d7, d8 until d31.
I want to make a for in this way:
for(int x=1;31>x;x++){
d[x].Text = x;
}
==== > I mean d[x] = d1; and then d[x] = d2.
*it is not an array
Can someone help me please?
This is my problem :
I have a lot of textboxes in names : d1, d2, d3, d4, d5, d6, d7, d8 until d31.
I want to make a for in this way:
for(int x=1;31>x;x++){
d[x].Text = x;
}
==== > I mean d[x] = d1; and then d[x] = d2.
*it is not an array
Can someone help me please?
Comment