Is it possible to set the location of the UltraPopupContainer before it is displayed?
It would appear that when the .show() method is called, the control is displayed starting at the point where the mouse is currently located.
Thanks in advance.
samwise1130,
There is an overload of the Show() method that accepts a PopupInfo object. This PopupInfo object gives you a little more flexibility with the UltraPopupContainer. For example:
PopupInfo info = new PopupInfo(); info.PreferredLocation = new Point(400, 400); this.ultraPopupControlContainer1.Show(info);
Hope this helps,
~Kim~
Thank you so much for the quick response. I should have checked the Show() overloads...my bad.
Thanks again!