hot questions tagged ontime - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:06:43Zhttp://stackoverflow.com/feeds/tag?tagnames=ontime&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1674467/vba-ontime-cancel-scheduling3VBA ontime cancel schedulingElaine Ng2009-11-04T15:18:10Z2009-11-05T13:23:46Z
<p>Hi</p>
<p>I have written a macro that runs at 15:30pm every workday when a workbook is first opened.
When the workbook is closed it tries to open itself the next time the macro is scheduled to run. I have tried to turn the scheduler to false and am getting an error. Code below.
Has anyone any ideas why this isn't working?</p>
<p>Thanks </p>
<pre><code>Private Sub Workbook_Open()
Application.OnTime TimeValue("15:30:00"), "MacroTimeTest"
End Sub
public dtime as date
Sub MacroTimeTest()
dtime = (Format(Application.Evaluate("workday(today(), 1)"), "DD/MM/YY") & " " & TimeValue("15:30:00"))
'other code has been deleted doesn't affect dtime variable
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
'I have tried replacing false with 0 etc but it didn't make a difference
Application.OnTime earliesttime:=dtime, procedure:="MacroTimeTest", schedule:=False
End Sub
</code></pre>
http://stackoverflow.com/questions/1142517/ontime-alternative0OnTime Alternative?Brian Scott2009-07-17T10:33:15Z2009-07-17T11:20:42Z
<p>I've recently begun working with a new software development firm. One of the things I would like to do is introduce a software management tool to collectively group the project development efforts within a single source.</p>
<p>I've traditionally used <a href="http://www.axosoft.com/products/ontime.aspx" rel="nofollow">OnTime</a> and my initial reaction was to introduce it within the new company as well. However, the pricing is a little too high for the Professional version at this point. </p>
<p>Can anyone offer any real alternatives which offer both Feature / Defect / Project management with easy reporting and dashboards? Basically I'm looking for an OnTime alternative which has been proven through use.</p>
<p>Thanks,</p>
<p>Brian</p>
http://stackoverflow.com/questions/887223/axosoft-ontime-vs-countersoft-gemini1Axosoft OnTime vs Countersoft GeminiRolle2009-05-20T10:35:19Z2009-06-25T21:30:50Z
<p>We are "upgrading" the systems at the company, moving from SourceSafe/BugNet/... (yeahy!) to some more serious systems. TFS is too expensive. We have come down to comparing OnTime vs Gemini. They both seem OK with an "OK" price-tag. We will of-course download and try them out both, but it would be nice with comments from experienced users. To me, they seem quite equal.</p>
<p>Has anyone used both, and can compare the two against each-other?
If you would recommend one of these, which one, and why?
Any other experiences with these systems? (Especially Gemini, seems hard to find reviews regarding this-one..?)</p>
<p>(We are talking about a smaller dev-team, max 8 dev in a project at a time, a couple of testers and some stakeholders/managers etc... Several projects running simultaneously. Need to be able to integrate to Visual Studio, Subversion with feed-back to the issue tracker etc)</p>
<p>Thanks for your time!</p>
http://stackoverflow.com/questions/9143/fogbugz-compared-to-ontime3FogBugz compared to OnTimeMike Powell2008-08-12T19:10:25Z2008-10-14T16:04:17Z
<p>Has anyone used both FogBugz and Axosoft's OnTime and care to offer an opinion? AxoSoft has a big <a href="http://www.axosoft.com/products/ontime_competition.aspx" rel="nofollow" title="Virtual Workspaces">feature comparison chart</a> but I'm also interested in more subjective thoughts on things like ease of use and stability.</p>
http://stackoverflow.com/questions/213212/managing-projects-what-do-you-think-about-axosoft-ontime2Managing Projects - What do you think about AxoSoft OnTime?BSoft2008-10-17T18:11:35Z2009-01-06T16:11:04Z
<p>I am wondering what is your experience with AxoSoft OnTime issues tracking and project management solution in case you have ever used it (pros and cons)...</p>
<p>Cheers,
B.</p>
http://stackoverflow.com/questions/414797/what-is-the-general-opinion-on-axosoft-ontime-when-use-for-project-management1What is the general opinion on AxoSoft OnTime when use for Project Management?Geo2009-01-05T22:52:51Z2009-01-05T22:52:51Z
<p><a href="http://stackoverflow.com/questions/213212/managing-projects-what-do-you-think-about-axosoft-ontime">Managing Projects</a> Was not marked answer and all their responses where exclusively for bug tracking. I am more interested in how it compares to other Project management software like <a href="http://www.intland.com" rel="nofollow">CodeBeamer</a>. The full Change Request, Bug, Tasks, Knowledge Mgmt (wiki), Discussion, and others.</p>
<p>I also looked at <a href="http://stackoverflow.com/questions/9143/fogbugz-compared-to-ontime">this other question</a> but find the same information. If someone has more info on AxoSoft ontime for PM, please reply. </p>
http://stackoverflow.com/questions/159331/integrate-svn-and-ontime-with-post-commit-hook0integrate SVN and OnTime with post-commit hookNancy2008-10-01T19:36:41Z2008-10-08T07:22:53Z
<p>My Subversion repository is on a Linux server and my OnTime 2007 system is on a windows 2003 server. I have a post-commit hook script that launches 2 Perl scripts. One sends an email—works great. The other is supposed to write the details from the SVN commit to the Notes section of the OnTime tracking system. </p>
<p>I have lots of debugging statements in the Perl scripts, so I can see that the details of the commit are accurately retrieved. The problem is writing them to OnTime. I'm using SOAP to pass the details, but it isn't working. The code is: </p>
<pre><code>$service = SOAP::Lite->uii(URI)
$service->proxy(URL_to_OnTime)
$service->on_action(sub{URI . UpdateDefectNotes})
$method = SOAP::Data->name(UpdateDefectNotes)->attr({xmlns=>URI})
$response = $service->call($method => $defectid,$name,$revisionid,$notes)
</code></pre>
<p>The response code I get back is 1, but I don't know if this is success or failure. All I know is that the Notes section in OnTime for the defectid is NOT updated.</p>
<p>Can anyone help?</p>
<p>Nancy</p>