quartz

Quartz.net beginner

A couple of questions for the real Quartz gurus out there! I am a Quartz.net beginner and hoping for some advice before I get burnt: 1) I schedule a bunch of jobs/triggers to go off at specific times in the future. After those tasks are finished I have no more use for the job/trigger information in the database. Is there anything I nee...

QUARTZ.NET calendars

Just a few questions: 1: Is there any in depth tutorials online how to use calendars in Quartz? I'm using Quartz.NET but Quartz tutorials would be vastly helpful of course. 2: More importantly, my application needs 2 configuration options. One configuration option is default - every job added runs, but when the scheduler is switched to...

Automatic job naming in Quartz.NET

Hi all, using Quartz.NET it seems like I need to name every job I create. Is there a way it can be automatically 'named', like an auto incrementing ID or something? ...

Using Quartz.NET for multiple pages/applications in project

Hi, I'm creating a project that is utilizing Quartz.NET (with ADO.NET DB storage). There is the core component, i.e. the component that executes jobs (console application at the moment, will be a Windows Service), plus multiple web forms where users can add jobs and edit job (edit the datamap values to be specific). I'm having a bit of ...

Hints and tips for a Windows service I am creating in C# and Quartz.NET

Hi all, I have a project ongoing at the moment which is create a Windows Service that essentially moves files around multiple paths. A job may be to, every 60 seconds, get all files matching a regular expression from an FTP server and transfer them to a Network Path, and so on. These jobs are stored in an SQL database. Currently, the se...

Making a layer structure for a drawing application

Hi, In relation to question an eralier question of mine, I have tried and failed to create a class with a NSMuttableArray member variable holding CALayerRefs. Can someone please guide me on how to do that. What I want to do is basically create CALayerRefs or CGLayerRefs or whatever, push them into my layers variable, and then, when I nee...

Leak in CGBitmapContextCreate

Trying to find the leak in my code I removed all the thing that did not matter, leaving the following code: static int last_memory = 0; void report_memory(NSString *name) { struct task_basic_info info; mach_msg_type_number_t size = sizeof(info); kern_return_t kerr = task_info(mach_task_self(), ...

Rendering text animations into a video file in Cocoa

Hello Everyone, I am after the following functionality in an app I am scoping. A user has the option to enter some set of text that will be overlaid onto a video file as animated text. In other words, the application is bundled with a stock version of the video containing no text, and the custom text entered by the user is used to rende...

Free hand drawing on the iphone/ipad

Hi I am pretty new to graphics but I want to create an iphone/ipad app that does free hand drawing. That is as the finger moves, a path is painted. Where do I start (books, resources, etc)? The stuff I see on apple's docs talk about lines and arcs. These are simple. They talk about bezier curves briefly. Is this what I should be looking...