Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Reminder trouble (Read 3970 times)
AndreaBaro
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 2
Joined: Jan 5th, 2006
Reminder trouble
Jan 31st, 2006 at 8:02pm
Print Post  
Hi !
I'm using Planner.NET rel 2.0 whit italian settings:
if i create an appointmnet and set remainder object, at specified time it doesn't work !
i've set message, time=appo.starttime and type=exact: i forgot something ?
best regards
Andrea

p.s.) also demo project doesn't work for me !
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Reminder trouble
Reply #1 - Feb 1st, 2006 at 7:49am
Print Post  
Hi!

What do you mean by 'demo project does not work', is it about reminders not showing ?

Reminders in Planner.NET raise an event. In order to be notified for a reminder, you must handle Schedule.ItemReminderTriggered.

Assuming that the variable 'calendar' references a Planner.NET calendar control, the code below shows how to the event could be handled:

Code
Select All
calendar.Schedule.ItemReminderTriggered +=
  new MindFusion.Scheduling.ItemEventHandler(OnItemReminder);

// ...

private void OnItemReminder(object sender, MindFusion.Scheduling.ItemEventArgs e)
{
  MessageBox.Show(e.Item.Reminder.Message);
}
 



I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
AndreaBaro
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 2
Joined: Jan 5th, 2006
Re: Reminder trouble
Reply #2 - Feb 1st, 2006 at 9:29am
Print Post  
ok !
I've misunderstood reminder's instructions....
now it's work fine ....
thank you !
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint