English 中文(简体)
Import Quartz DLL in C# VIsual Studio
原标题:

I m in need for the Quartz DLL , I ve downloaded all the source and everything and there is the Quartz.dll and Common.Logging.dll files, but I don t know how to use them in my own applications.

Can someone tell me how to do this, it s just this one step that s stopping me from doing it all.

Thanks

最佳回答

Sandeep,

Don t mind discussing this with you, but would need to know what the application is that you are trying to use the Quartz library for. Unfortunately, the Quartz library documentation isn t quite what it should be, and it took several days for me to absorb the product myself.

The jest of using it is something like the following:

  1. Create a SchedulerFactory
  2. Create a Scheduler
  3. Create a JobDetail
  4. Create a Trigger
  5. schedule the job (with the detail and the trigger)

From there, everything else is all in the details on the task you are trying to accomplish. Can t give any more specifics without that info. Hope that 30 second lesson gets you on your way.

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签