(VB.NET 2005)
dim objVNC = New AxViewerX.AxCSC_ViewerXControl
Me.PanelMain.Controls.Add(objVNC)
I can send a demo project and binaries if that helps..
In the VNC Manager we also using dynamically created ViewerX instances as part the VNC Thumbnails view feature. I think you should add BeginInit() and EndInit() calls to your code. In C# the code should look like this:
AxViewerX.AxCSC_ViewerXControl objVNC = new AxViewerX.AxCSC_ViewerXControl();objVNC.BeginInit();//setup ViewerX properties herePanelMain.Controls.Add(objVNC);objVNC.EndInit(); Kindest Regards,SmartCode Solutions Support