Can we use quartz in windows forms application. I did it but its not working. I put the initialization code:
JobDetail jd = new JobDetail("myJob1", "myGroup1", typeof(MyClass), false, true, true);
SimpleTrigger simtri = new SimpleTrigger("myTrigger1", "mytriggerGroup1", "myJob1", "myGroup1", DateTime.Now, null, SimpleTrigger.RepeatIndefinitely, TimeSpan.FromSeconds(60));
ISchedulerFactory sf = new StdSchedulerFactory(properties);
IScheduler sched = sf.GetScheduler();
sched.Start();
sched.ScheduleJob(jd, simtri);
and then I made a job class:
public class MyClass : IJob
{
public void Execute(JobExecutionContext context)
{
TextWriter tr = new StreamWriter(@"C:\File43.txt");
tr.WriteLine("This file is written at: " + DateTime.Now);
tr.Close();
MessageBox.Show("Work Done");
}
}
Is there any thing I have to do to run MyClass using quartz. Rite now its neither giving any exception nor I am able to find any File43.txt file in my C drive.
Thanks in advance