Hi,
I'm posting because I could not find my answer in forum. is possiible open a form create by me instead of Appointment Dialog? Or how can I create a Appoitment Dialog?
Tks
Hi
Hook to the following calendar info event
public
event DisplayAppointmentDialogEventHandler
void CalendarInfo_BeforeDisplayAppointmentDialog(object sender, Infragistics.Win.UltraWinSchedule.DisplayAppointmentDialogEventArgs e)
{
e.Cancel =
true;
ShowYourForm()
}