Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Adding minutes to a time field

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adding minutes to a time field

    Happy New Year!

    I have a browse with containing the following fields: 'Start_Time', 'End_Time' and 'Minutes'. (The Time fields are in fact Time fields and the Minutes is a Numeric field).

    What I want to do is enter a date and time into the Start_Time and then in the next field enter an amount of minutes, typically two digits in length. I then want the minutes field to be added to the Start_Time and populate the End_Time field accordingly. I have been trying to do it in Field Rules but without success.

    I have searched the board but I can't find any previous examples of adding minutes to time fields.

    Any help would be greatly appreciated.

    #2
    Re: Adding minutes to a time field

    Date/time addition is performed by adding seconds to the value, not minutes. Your calculation should multiply the minutes by 60.

    Hidden in the documentation under Date and Time Functions.
    There can be only one.

    Comment


      #3
      Re: Adding minutes to a time field

      For the mathematically inclined this is akin to the principle of the lowest common denominator in long division.

      Comment


        #4
        Re: Adding minutes to a time field

        Thanks very much for the replies. I had already found the 'Date & Time Addition' section in the Help docs but didn't get too far with it as there is no explanation to the code, e.g.:

        t1 = now()
        ? t1
        = 10/19/2005 11:07:07 53 am
        t2 = ctodt("10/20/05 12:07:07 53 am")
        ? t2
        = 10/20/2005 12:07:07 53 am
        t2 = t2 + 60
        ? t2
        = 10/20/2005 12:08:07 53 am
        t1 = t1 + 0.47
        ? t1
        = 10/19/2005 11:07:08 00 am

        I'm not interested in the 'now()' function above so I'm guessing I can replace that with my 'Start_time' field, but after that - I'm lost. Is there anywhere I can find a fuller explanation of the above sample code?

        Comment


          #5
          Re: Adding minutes to a time field

          this code runs in the interactive window

          Code:
          t1 = now()   ' assign a date time value to the variable t1; check docs for meaning of NOW() function
          ? t1        ' display the value using the question mark command
          = 10/19/2005 11:07:07 53 am     ' the equals sign shows you what t1 contains;  i.e.  its value
                                                ' check docs for discussion of datetime datatypes.  
                                                ' a datetime value contains a date, an hour, a minute, a second values.  AND
                                                ' in this case the "53" represents 53 hundredths of a second
          
          t2 = ctodt("10/20/05 12:07:07 53 am")     ' convert a character string to a datetime value and assign it to t2
          ? t2
          = 10/20/2005 12:07:07 53 am                 ' as before, display the datetime value in t2
          
          t2 = t2 + 60          ' add 60 seconds to the datetime value in t2
          ? t2
          = 10/20/2005 12:08:07 53 am                 ' as before, display the datetime value in t2;  NOTICE the minutes 
                                                             'changed when 60 was added
          
          t1 = t1 + 0.47        ' another example;  add 47 hundredths of a second to the datetime value in t1
          ? t1
          = 10/19/2005 11:07:[COLOR="#FF0000"]08 00[/COLOR] am                ' and display the result.
          
          Do you understand why [COLOR="#FF0000"]seconds[/COLOR] went from 07 to 08, while hundredths of a second went from 53 to 00?
          Last edited by Tom Cone Jr; 01-12-2014, 03:07 PM.

          Comment


            #6
            Re: Adding minutes to a time field

            Code:
            dim start as t
            start="01/12/2014 01:53:32 48 pm"
            ?start+60 '1 minute=60 seconds
            = 01/12/2014 01:54:32 48 pm
            ?start+3600 'adding one hour
            = 01/12/2014 02:53:32 48 pm
            Same as:
            Code:
            dim start as t
            start="01/12/2014 01:53 pm"
            ?start+60
            = 01/12/2014 01:54:00 00 pm
            ?start+3600
            = 01/12/2014 02:53:00 00 pm

            Comment


              #7
              Re: Adding minutes to a time field

              Thanks for the advise. I do now understand this specific code, though I was confused for a few hours until I eventually realized there might be a small syntax error in your line 3, Mr G, though I'm still unsure... (with the + and the =).

              I then spent 24 hours reading through the xbasic lessons, in conjunction with the above, but regrettably couldn't get the interactive window to stop complaining about my code.

              The good news is: after six years of compiling brilliant Alpha applications, it was the first time I'd actually had cause to open the interactive window!

              The even better news is, I eventually realized I could very simply achieve my initial goal via the expression builder in my field rules, i.e. Start_time + (Minutes*60)

              My error of a few days ago was not realizing that we are calculating in seconds, as you kindly pointed out.

              Meanwhile my xbasic problems were largely caused when I tried to replace the date/times - in the examples above - with my field names, especially with quote marks etc. And then I couldn't grasp where to put my code in order to update the relevant field. Like I said over a year ago, I must start learning xbasic... but for now, my application is doing exactly what I wanted. Thanks again.

              Comment


                #8
                Re: Adding minutes to a time field

                Originally posted by Larry Gordon View Post
                I was confused for a few hours until I eventually realized there might be a small syntax error in your line 3, Mr G, though I'm still unsure.
                There was no error.
                The line reads:
                ?start+60 '1 minute=60 seconds
                The part in blue, was commented out. Notice the single quote before 1?
                I put that there to help you understand where the 60 was coming from.
                Evidently this single quote cost you hours of research!

                Comment

                Working...
                X