or


var screenTip = new RadOffice2007ScreenTipElement(); screenTip.MainTextLabel.Text = SchedulerRepository.GetAppointmentToolTip(ent); screenTip.CaptionLabel.Text = ""; screenTip.BackColor = Color.White; screenTip.AutoSize = false; var sz = screenTip.Size; sz.Width = 400; sz.Height = 150; screenTip.Size = sz; apptEle.ScreenTip = screenTip;AppointmentEditDialogShowing event and then showing the dialog i want with theAppointmentElementDoubleClick event. it's not a modal window, but a user control i'm making visible overtop of the existing scheduler. Thanks
