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

Delete Record Confirmation

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

    Delete Record Confirmation

    When you delete a record from a table a confirmation dialog pops up asking if you want to continue, Yes or No. Is there a way to edit this dialog and/or get the result so that code in a delete button for example can act on this information conditionally? The dialog seems to be a built in Alpha event and I can't find anything on it.

    #2
    Re: Delete Record Confirmation

    Greg,
    As with many Alpha built in functions, they have their own messages and the only possible change that can be made is the Title I believe and then only with the addon Branding Tool.

    If you do not want/like an Alpha messagebox in looks, message, or even not wanting it to appear, there is no way I have heard of.

    Some functions do have an additional argument that can make it so it won't appear so check that out as well.

    What to do is to create your own operation/function that does what you need to do, most times with table methods. Then you can error trap in your own way.


    Check out some of the Similar Threads that came up under this one....or do a "delete" search as am sure many will be of use.
    Mike
    __________________________________________
    It is only when we forget all our learning that we begin to know.
    It's not what you look at that matters, it's what you see.
    Henry David Thoreau
    __________________________________________



    Comment


      #3
      Re: Delete Record Confirmation

      HI Mike, thanks for replying. I've done some searching but can't seem to find exactly what I'm looking for. I'm not really needing to modify the confirmation dialog that pops up when you delete a record, I just thought that might be useful knowledge in the future if it was possible.

      What I really need is to be able to determine if the user selects Yes (go ahead with the delete) or No ( cancel the delete process) from the dialog box. Since this is a built-in Alpha dialog I'm not sure how to get that information. If a user decides to cancel a delete I need to know so that certain things won't happen in the app.

      Comment


        #4
        Re: Delete Record Confirmation

        Greg,
        I believe you will have to "roll your own" delete script so that your own dialog box comes up---I know of no way to obtain the built in Alpha dialog box choices. That is what you will find in many cases....Alpha makes most things very easy to do, but the trade-off is that you are then somewhat limited if using built-in functionality.

        Here is one of MANY delete scripts you could find on the messageboard if you need one. You would simply have your own UI messagebox come up prior to the delete script and then you can trap the choices made from the UI. A general way for the UI messagebox would be the following:

        Code:
        ans = ui_msg_box("Question","Answer yes or no",UI_YES_NO)
        
        if ans = UI_YES_SELECTED
        ' do this code
        else
        'do the other code here
        end if
        This delete script I believe was from a post by Mike Wilson a while back.
        Code:
        dim tbl as P
        tbl= table.current()     ' a number goes in the brackets if it's a child record
        DIM mode as c
        mode = parentform.mode_get()
        ' Check the mode of the table to assess whether you need the change_begin
           if mode = "ENTER" .or. mode = "CHANGE" then
              tbl.delete()
            
           else if mode = "VIEW" then
            tbl.change_begin()
            tbl.delete()
            tbl.change_end()
           end if
        
        'Refresh data in current form at parent level.
          topparent.Commit()
          topparent.Refresh_Layout()
        Last edited by MikeC; 11-06-2009, 10:39 AM. Reason: more info
        Mike
        __________________________________________
        It is only when we forget all our learning that we begin to know.
        It's not what you look at that matters, it's what you see.
        Henry David Thoreau
        __________________________________________



        Comment


          #5
          Re: Delete Record Confirmation

          Yeah but how do I stop the Alpha built-in dialog from popping up as well? I can't find anyway to control it. This is really the heart of my issue, if I could just disable it then doing my own dialog would be no big deal and would solve my problem.

          Comment


            #6
            Re: Delete Record Confirmation

            When you use the method I illustrated, you are not using Alpha's built-in function which has their messagebox.
            Mike
            __________________________________________
            It is only when we forget all our learning that we begin to know.
            It's not what you look at that matters, it's what you see.
            Henry David Thoreau
            __________________________________________



            Comment


              #7
              Re: Delete Record Confirmation

              Oh..... :o I see what you are saying now. I got so tunnel visioned on using the alpha delete script I didn't even think about writing my own. Thanks for your help Mike!

              Comment

              Working...
              X