Have an UltraMonthViewSingle - create an appointment and hit delete and comes up with a delete dialog by default. What is the easiest way of rewording the dialog?
Works, thx
Hi,
Have you been able to resolve your issue ? If you still have any concerns or questions I will be glad to help. If you need any additional assistance don’t hesitate to ask.
Regards
Hello,
maybe one possible approach could be, if you handle BeforeActivitiesDeleted() event and include the code below:
void ultraMonthViewSingle1_BeforeActivitiesDeleted(object sender, BeforeActivitiesDeletedEventArgs e)
{
e.DisplayPromptMsg =false;
if (MessageBox.Show("This is my custom message", "Delete", MessageBoxButtons.OKCancel) == System.Windows.Forms.DialogResult.Cancel)
e.Cancel =true;
}
Please let me know if you have any questions.