search for: start_month

Displaying 5 results from an estimated 5 matches for "start_month".

2004 Apr 02
2
Futzing with TaskScheduler
...e and I''m not sure what logic MS used when it chose "BeginX" versus "StartX". I''m just going to use "start". So for now I''m looking at something like this: t = Trigger.new(task_name,some_host) t.trigger = { :start_year => 2004 :start_month => 4 :start_day => 25 :start_hour => 23 :start_minute => 5 :trigger_type => DAILY :week => FIRST | LAST :dow => MONDAY | TUESDAY | WEDNESDAY :months => JANUARY | FEBRUARY | MARCH } How''s that look? Dan ________________________________________...
2004 Jul 31
3
Bug in new_work_item
...from test.rb:22 test.rb:22: [BUG] Segmentation fault ruby 1.8.2 (2004-07-29) [i386-mswin32] abnormal program termination Here''s test.rb: require "win32/taskscheduler" include Win32 p TaskScheduler::VERSION trigger = { "start_year" => 2009, "start_month" => 4, "start_day" => 11, "start_hour" => 7, "start_minute" => 14, "trigger_type" => TaskScheduler::DAILY, "type" => { "days_interval" => 1 } } ts = TaskScheduler.new ts.new_work_item(&q...
2005 Sep 04
1
Fwd: Win32 Utils TaskScheduler
Note: forwarded message attached. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- An embedded message was scrubbed... From: Scott Harper <sharperct@gmail.com> Subject: Win32 Utils TaskScheduler Date: Sun, 4 Sep 2005 17:04:24 -0400 Size: 4971 Url:
2008 Jan 12
2
win32-taskscheduler and TaskScheduler#account_information
Hi, This library has needed some work for a while, so I''m finally getting around to it. I''ve made some changes and updates in CVS, so grab the latest source to test the issue below. The first issue I''d like to tackle is why the TaskScheduler#account_information (GetAccountInformation) method fails if there''s no user associated with a given task. The docs
2006 Jan 07
4
set date with date_select
when retreiving a date from a DATETIME field in a database, is there a way to set the date to the value of the DB in the view? It seems to always default to the current date... if I have a field called birthdate in the users table and i do @user = User.find(@params[:id]) in my view i have a <%= date_select ''birthdate'',''user'' %> but dont know how to