I have declared a property as a SQLConnection Object.
In this implementation this property is being used in a class which is
derived from a Web Control Base Class.

My Class once built exposes properies in the designer.
It exposes the SQLConnection Property as well.
The problem is that when I use the designer to build a connectionstring for
the porperty it doesn't pass it thru to the control in run time the
connectionstring property comes back null meaning not initialized.

The property was implemented in the standard.

Dim object as new Object
Property as Object
get
return Object
end get
set
Object = value
end set
etc...

Any ideas on how to use this object as a property.
The SQLConnection class cannot be inherited from so
I am at a loss...


Thanks in Advance!
Chris...