wcf-instancing

Wcf IInstanceProvider Behaviour never calling Realease() ?

Hi, I'm implementing my own IInstanceProvider class to override the creation and realease of new service instances but the Release() method never gets called on my implemented class? It's implemented using an IServiceBehavior to attach to the exposed endpoint. No matter how hard we hammer the service the Relaease() method nevers get...

WPF: How do I address a usercontrol that I Instantiated at runtime?

I have added a usercontrol to my project like this: Public Sub clickAutoDrillLeft(ByVal sender as Object, ByVal e as System.Windows.RoutedEventArgs) Dim LSliderItem as New TriplexAmpsControl me.LeftSlider.Items.Add(LSliderItem) End sub The "LSliderIn" object is an items control, and the "TriplexAmpsControl" is a userc...