Hello,
I have a UserControl with the name Toolbox, so the UserControl's class
name is UserControls_Toolbox.
I want to pass this UserControl to a function in another (static) class,
just as you would do with for example a string value:
For example:
string sValue = 'hello';
OtherStaticClass.FunctionName(sValue);
But the problem is that the UserControl's type is unkown in the static
class, so I can't make a function that expects the UserControl as a
parameter.
How can I make something like this:
public void FunctionName(UserControls_Toolbox tb)
{
}
In an aspx page this is not a problem, because in an aspx page I can
declare a variable of type UserControls_Toolbox, but in an other class
this seems not to be possible. Anyone got an idea?
Greetings,
Chris
bruce barker - 13 Feb 2008 19:40 GMT
define an interface (in appcode) that the user control implements. then you
can pass the interface to the static class
-- bruce (sqlwork.com)
> Hello,
>
[quoted text clipped - 26 lines]
>
> *** Sent via Developersdex http://www.developersdex.com ***
gnewsgroup - 13 Feb 2008 20:08 GMT
On Feb 13, 2:40 pm, bruce barker
<brucebar...@discussions.microsoft.com> wrote:
> define an interface (in appcode) that the user control implements. then you
> can pass the interface to the static class
>
> -- bruce (sqlwork.com)
I am jumping into the conversation. But, why can't we do this shown
below?
UserControls_Toolbox tb