I'm not sure what you mean by "individual controls of that user control."
Your original post asked how to modify every instance of a single Control.
So, what exactly ARE you asking? Are you asking if you can set properties of
every instance of a Control, or are you asking how to modify the properties
of the child Controls of a given single instance of a User Control?
I can tell you this much at this point: A User Control is a class. Classes
have properties. You can set the public properties which have a Set method,
and public fields, the same ways that you would set properties and fields of
any class. To modify properties of any Control in its Controls Collection,
you just use FindControl() to get a handle to the child Control, and then
set the properties of the Child Control to whatever you want.
I'm not sure, but I'm getting the impression that you want to do everything
through the Visual Studio.Net IDE. That is not possible. Some things have to
be hand-coded.
--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.