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

Preventing more than 1 clic on a form

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

    Preventing more than 1 clic on a form

    Im having trouble with a form that saves inserts new record to a table a then automaticaly sends an email, the promblem occurs because users some times press the submit button more than once and this causes the record an the email to execute more than once, i have tried several aproaches to try to prevent this but so far i havent had seccess, can someone help with this problem.
    Cheers
    Mauricio


    #2
    Re: Preventing more than 1 clic on a form

    How about making the first action to disable the button and the last action to re-enable it again. That way it would do nothing until your script runs completely through.

    Comment


      #3
      Re: Preventing more than 1 clic on a form

      That sounds like a good idea, how can I de-activate the submit button on the form?
      Cheers
      Mauricio

      Comment


        #4
        Re: Preventing more than 1 clic on a form

        Disabling the button would require javascript. An easier all-A5 approach would be to change the xbasic under that button. Have it ONLY open a new A5W page. On the A5W page, do your processing while a animated GIF perhaps says "Wait!". Then when the processing is done, return them to their original page (or some other page). If you use this method, the original button will immediately disappear and they cannot click on it.
        Steve Wood
        See my profile on IADN

        Comment


          #5
          Re: Preventing more than 1 clic on a form

          Steve I tried that aproach but it seems that the browser doesnt goes to the next a5w page until it is fully loaded and considering that the xbasic code is loaded before the html (I think) theres no practical diference between putting this "Now loading" page and not doing so.

          Unless im doing somethin wrong.
          Cheers
          Mauricio

          Comment


            #6
            Re: Preventing more than 1 clic on a form

            Here's a different idea (not tested). When they click the button, test for a session variable. If it does not exist, create the variable, run the script and then delete the variable. As below:

            if eval_valid("session.isrunning")
            'do nothing
            else
            session.isrunning="YES"
            ..run the script
            delete session.isrunning
            end
            Steve Wood
            See my profile on IADN

            Comment


              #7
              Re: Preventing more than 1 clic on a form

              Steve,

              That sounds like a good idea, but I think you need to reorder the script as shown below. Otherwise, the variable is still valid until the script finishes.

              if eval_valid("session.isrunning")
              'do nothing
              else
              session.isrunning="YES"
              delete session.isrunning
              ..run the script
              end
              Peter
              AlphaBase Solutions, LLC

              [email protected]
              https://www.alphabasesolutions.com


              Comment


                #8
                Re: Preventing more than 1 clic on a form

                It needs to be valid until you want the button to be active again. In fact, the script has to finish by moving the user away from this button, to a new page, etc. before deleting the session variable. Otherwise, they could just click the button again after the script finishes. Deleting the session variable has to come after the script runs, and after the page moves away from the dialog. That means deleting the session variable may not even be inside the IF THEN in my example. Deleteing the session variable may be done in whatever page is designed to come up after the script runs. For that matter, if this particular button is only pressed once per login (if that's the case) you could ignore deleting the session variable and that would only allow that script to run once per login.
                Steve Wood
                See my profile on IADN

                Comment


                  #9
                  Re: Preventing more than 1 clic on a form

                  Originally posted by Steve Wood View Post
                  It needs to be valid until you want the button to be active again.
                  Sorry to be thick-headed, I don't follow the logic here. What do you mean by "until"?
                  Peter
                  AlphaBase Solutions, LLC

                  [email protected]
                  https://www.alphabasesolutions.com


                  Comment


                    #10
                    Re: Preventing more than 1 clic on a form

                    "Until", same as "I don't want the button to work until next time I want it to work".

                    I built a prototype for this that will work for all occassions using a Dialog component. The button will only fire ONCE for each time the dialog is called. It will not even fire a second time if the browser is refreshed:

                    Initialize Event:
                    delete session.isclicked

                    Validate Event:
                    if eval_valid("session.isclicked")
                    CurrentForm.Has_Error = .t.
                    CurrentForm.Error_Message = "Hey! You already pressed that button."
                    else
                    ..any other validation code
                    end if

                    AfterValidate Event:
                    session.isclicked="True"
                    ..any code here
                    Steve Wood
                    See my profile on IADN

                    Comment


                      #11
                      Re: Preventing more than 1 clic on a form

                      Thanks for that, Steve.
                      Peter
                      AlphaBase Solutions, LLC

                      [email protected]
                      https://www.alphabasesolutions.com


                      Comment


                        #12
                        Re: Preventing more than 1 clic on a form

                        I think that would do it, ill try that
                        thank you Steve
                        Cheers
                        Mauricio

                        Comment


                          #13
                          Re: Preventing more than 1 clic on a form

                          Just happend to tweak this; if you leave out the line starting with "CurrentForm.Error_Message=", it works more intuitively. With that line gone, the button still only works once no matter how many times you click it, but does not pop up any 'warning'. Looks better.
                          Steve Wood
                          See my profile on IADN

                          Comment


                            #14
                            Re: Preventing more than 1 clic on a form

                            I have tried various versions of this with limited success. No matter how I do it, it works if you wait a few seconds between button clicks, but if you click it twice fast it still runs AfterValidate and we get duplicate table entries.

                            I have about 8 checks going on in the Validate section and it could be why. It almost seems as if WAS wants both Validate requests to finish, then runs AfterValidate concurrently.

                            The only method I have found that consistently works is to disable the button with JavaScript. I would rather not do it this way for obvious reasons, but it is the only way I could stop the duplicates. I use the method in this thread as a backup to the JavaScript.

                            Comment


                              #15
                              Re: Preventing more than 1 clic on a form

                              You might post some of your code here, because I can't see how it would not work. When you click the Submit button it has to run the Validate event first. If that event triggers an error, which it should given my example, then the aftervalidate cannot possibly run.
                              Steve Wood
                              See my profile on IADN

                              Comment

                              Working...
                              X