You should be able to adapt the recursive code at the link below.
http://www.google.ca/groups?hl=en&lr=&ie=UTF-8&selm=%23o4DxjF4DHA.2332%40TK2MSFT
NGP10.phx.gbl

Signature
Tim Wilson
.Net Compact Framework MVP
Good Morning Tim
Thank you for that quick and timely reply.
I tried it out and it worked like a charm. In fact it worked so well that I
adjusted it to suit the needs of specific events
within my little program and they did the job perfectly.
Here is an example of those adjustments. Perhaps another C# novice like
myself can benefit from your assistance as I did.
sample
private void cboxS1_Checked(object sender, System.EventArgs e)
{
foreach(Control ctrl in this.gboxStdS1.Controls)
{
if (ctrl is TextBox)
((TextBox)ctrl).Text = "0.00" ;
}
Thanks again
Dennis
> You should be able to adapt the recursive code at the link below.
http://www.google.ca/groups?hl=en&lr=&ie=UTF-8&selm=%23o4DxjF4DHA.2332%40TK2MSFT
NGP10.phx.gbl
> > Good Morning
> >
[quoted text clipped - 11 lines]
> >
> > Dennis