Is it possible to embed the UltraCalendarCombo in the windows toolstrip.
I do this for a Control
public class ToolStripWrapper<ControlType> : ToolStripControlHost
where ControlType : System.Windows.Forms.Control, new()
{
public ToolStripWrapper() : base( new ControlType() ){}
public new ControlType Control
{ get { return base.Control as ControlType; }}
}
Can something like this be done for the UltraCalendarCombo -since it doesnt inherit from Control
Also is it possible to change the text on the Today button and trap the click event to point to date which is not Today's date?
Thanks