I got UltraPopUpControlContainer in windows form which i like to open in different form. How can i do that.
Hi,
I'm not sure I understand the question. Are you saying you want the UltraPopUpControlContainerto contain a form and pop it up? It's not really designed for that, but a Form is a control, so in theory you could set the Control property to a Form at run-time. I expect this probably won't work very well, though, and I would not be surprised if there were problems with it, because a Form does certain things that other controls don't do, and they are not designed to be contained by other controls. But there's no hard in trying it out.
You would be better off using a UserControl or a Panel, in my opinion.