private void SetStickyCell(StickyCell stickyCell)
{
stickyCell.CandidateColors = new Color[] {Color.Orange, Color.Purple,Color.Red,Color.Green,Color.Blue,Color.Yellow};
stickyCell.MarkColor = Color.Orange;
stickyCell.ReminderTimes = 5;
stickyCell.MarkColorChangedByDays = 3;
stickyCell.TargetDate = DateTime.Today.AddDays(10d);
stickyCell.Popup = typeof(CustomPopForm);
}
Private Sub SetStickyCell(stickyCell As StickyCell)
stickyCell.CandidateColors = New Color() {Color.Orange, Color.Purple, Color.Red, Color.Green, Color.Blue, Color.Yellow}
stickyCell.MarkColor = Color.Orange
stickyCell.ReminderTimes = 5
stickyCell.MarkColorChangedByDays = 3
stickyCell.TargetDate = DateTime.Today.AddDays(10.0)
stickyCell.Popup = GetType(CustomPopForm)
End Sub