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

Sort/Update through Browse - Help

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

    Sort/Update through Browse - Help

    Ok, here is the deal. I have a browse, and I do a sort that sorts the browse. I added a column to the browse that has an update button, a nice little trick I didn't know about and found earlier while looking for help with this problem. Anyway, here is my problem. In A5v5, I did a search based on a specific criteria, sorted the records and then displayed the browse with all matching records. The use would then select which row they wanted to update, and then hit an update button on the form that would take them to a new form that had the single record open with all the existing data available to be changed and added to. Overly complicated yes, but it is a lot of data to change, so easier to just make a new form for it. Anyway, when I converted over to v9, everything worked except for one small thing and I can't seem to make it function properly.

    On either the update button on the form, or the update button in the browse (which I prefer since it's more obvious which record is to be updated) when I press the button to run the update code, it does everything it's supposed to do, except that when it opens the new form, it is on record #1, not the sorted or queried record. I don't get any code errors, I don't get any wonkiness, it looks like it works, then reverts to a non sorted/queried table. It then opens the form on record #1.

    Here is the update code for the button in the browse.

    Everything that is not part of the FUNCTION itself (i.e. the button in the browse) is what I copied over from my v5 code that still works perfectly in v5. I click the record, hit update and voila. If anybody can see what I did wrong, or if it's changed any or if something should be different, or even just a good thread to go read that I may have missed, I don't mind figuring it out, just gotten stuck is all. Thanks!

    Jason

    FUNCTION UPDATE0_ButtonClick AS V ( event AS C, data AS C , row AS N )
    'DESCRIPTION: Fired when a button is clicked on a column.
    'Arguments: event - the name of the event that is fired
    ' data - the data in the column cell
    ' row - the row number in the browse
    'this.SetViewport_Row() sets the current row to the row with the button that was clicked.
    this.Set_Viewport_row(row)

    DIM Shared varP_UpdateReport as P
    DIM layout_name1 as c
    DIM layout_name2 as c
    DIM layout_name3 as c
    dim tbl as p
    dim record_number as n

    layout_name1 = "Reports - Modify"
    layout_name2 = "Reports - Vehicle"
    layout_name3 = "Reports - NewCustomer"


    tbl = table.current()
    record_number = current_record_number()
    query.filter = "recno() = " + record_number
    query.order = ""
    indx = tbl.query_create()

    if tbl.vehicle = .T.
    varP_UpdateReport = :Form.view(layout_name2)
    else if tbl.Newcustomer = .T.
    varP_UpdateReport = :Form.view(layout_name3)
    else
    varP_UpdateReport = :Form.view(layout_name1)
    end if

    END FUNCTION

    #2
    Re: Sort/Update through Browse - Help

    Just read your code again and you are not passing the record number of the row that was clicked to the called form.

    Is this an embedded browse on a form, or a stand alone (named) browse.

    I had some code here before, I read your code more thoroughly and saw that nothing was being passed to the called form so I revised this post.

    You need to pass the record number to the called form - you can use Form.viewqueried() function to call the form and pass the filter to the called form.

    Look in the help file for Form.viewqueried().

    That should give you what you need instead of Form.view() which does not filter the called table.

    Tom Baker
    Last edited by Tbaker; 06-18-2010, 07:50 PM.

    Comment


      #3
      Re: Sort/Update through Browse - Help

      Jason

      Here is a zip file that demonstrates the use of form.viewqueried() on an embedded browse on a form that calls 1 of three forms based on the acct number in the browse.

      Look in the browse events events to see the code.

      Normally I would use the OnRowDblClick event to do this but I can understand using buttons as there is no doubt that they want to update.

      There is no query, but that should not be on the update button in the browse.

      Tom

      Comment


        #4
        Re: Sort/Update through Browse - Help

        That is exactly what I needed. Perfect! I got my browses working, my updates are working, now for some reason though, whenever I do my search, the update the record in the new form, save and close that form, it goes back to the search screen, which I want it to do, but I can't input any data in the search boxes. I clock on them and they fill with color, no cursor or anything. The only way to get them to work again is to close the form and re-open it. Very strange. I do searches and updates on other forms that aren't as complicated and drawn out as this one, but I don't have this problem on them, and I close all the forms and revert back the exact same way. I don't get it. Still working on it though. Again, thanks for the help with the browses, that's exactly what I needed.

        Comment


          #5
          Re: Sort/Update through Browse - Help

          Jason

          It sounds like you have something restricting entry into the browse.

          Is the browse read only (design mode for the form with the browse, right click on the browse, select properties), is the read only box check at the bottom of the setup tab.

          How are you querying the form ( a button, on a form event (OnInit, OnActivate etc). Maybe something in that code is restricting entry.

          Can you make a stripped down sample of your app and post it here so we can get a look at what is happening and give possible solutions?

          Tom Baker

          Comment


            #6
            Re: Sort/Update through Browse - Help

            I'll get something together tonight or tomorow and post it up. Thanks!

            Comment


              #7
              Re: Sort/Update through Browse - Help

              You know, I went in and packed everything, compacted the database, and the problem has gone away. I don't know if it was just being ornery or what, but I have restarted it 3 times, and run it through its' paces and it hasn't duplicated the error. If it crops back up I'll post a copy of the db for youto look at, but for now, I am going to chalk it up to gremlins. Thanks!

              Comment


                #8
                Re: Sort/Update through Browse - Help

                Jason

                Glad you got it working.

                Tom

                Comment

                Working...
                X