Search Result

Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
clock
  •  

  • brittany1
    started a topic get date and time value from timestamp

    get date and time value from timestamp

    Can you please help I am a beginner.
    I have a clocking in / out Access DB with the following fields in a form. I want to get the "date" detail from the "date" field and add it to the "start" and "finish" fields when i enter times in these fields. The format of the start/finish fields is 08:15 on the form,in the backround it has the full "dd-mm-yy hh:mm" format.

    These fields are...
    See more | Go to post

  • HawkNail
    started a topic JavaScript Counter Error

    JavaScript Counter Error

    Long story short, I'm making an online test to help prepare some buddies for an online math test. The test is timed and so I am trying to put in a counter to count down to zero. My code looks like this:

    Code:
    function clock()
    {
    	if (document.clock.display.value>0){
    	setTimeout("clock()",60);
    	document.clock.display.value = document.clock.display.value - 1;
    	document.clock.display.write("document.clock.display.value");
    ...
    See more | Go to post
Working...