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

Roomier Lookup

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

    Roomier Lookup

    We have always used a drop list of some sort for a table lookup. One record per line. But this time the deciding information might be past the end of the visible line. Locate will find the target word, but there could be more than one instance. Most of the time the required information is within the drop list's view, but how to handle the odd multiple hit?
    Attached Files
    Last edited by Sandy Garrett; 02-27-2015, 03:29 PM.

    #2
    Re: Roomier Lookup

    if you use an xdialog box with the listbox option, you can make the display area as wide and as tall as you need.

    Please see attached.

    xdialog_list_box.jpg

    Tom

    Comment


      #3
      Re: Roomier Lookup

      If you're using a table field rule table lookup you can design and save your own browse of the lookup table to suit and then make that the "Browse layout to display" in the field rule.
      There can be only one.

      Comment


        #4
        Re: Roomier Lookup

        Stan, yes, I'm using a table field rule lookup and have tried a custom browse. The rows aren't wide enough to show enough information. There isn't room on the monitor.

        My first thought was to look for double height rows. There is a Word Wrap on a browse's column properties format, but it didn't seem to happen.

        Comment


          #5
          Re: Roomier Lookup

          Blue sky suggestion? Browse displays field and calculated field. Row height set in browse design. Calculated field expression something like

          words(fieldname,1,3)+crlf()+words(fieldname,4,3)+crlf()+words(fieldname,7,3)+crlf()+words(fieldname,10,3)

          Tested in interactive (simulation)

          Code:
          tst = "abc,def,ghi,jkl,mno,pqr,stu,vwx,yz"
          
          ? words(tst,1,3)+crlf()+words(tst,4,3)+crlf()+words(tst,7,3)+crlf()+words(tst,10,3)
          = abc def ghi
          jkl mno pqr
          stu vwx yz
          There can be only one.

          Comment


            #6
            Re: Roomier Lookup

            Problem - on entering a new record in Master, I need to select which lookup (Boxes Browse). Usually the target is obvious in the Boxes or first screenful of Contents. Rarely the target does not appear until the second or later line of Contents. So I wanted to put a button on the Boxes browse to show a Places form with the complete Content displayed.

            Browse control, Open form wants the new record to be saved before the form is shown - not good for new entries.

            The attached attempt has at least two problems. A lookup attempt shows

            Warning: Field Unbound is not valid

            referring to the Boxes browse. Then doubleclicking the action in the browse returns to the original Master form rather than the big Places.

            But if the Boxes browse is opened directly instead of through Master's lookup, the action behaves properly.
            Attached Files

            Comment


              #7
              Re: Roomier Lookup

              Sandy

              Are you looking for something like this?

              Know what we're looking for is most of the battle...

              sandy1.JPG
              Al Buchholz
              Bookwood Systems, LTD
              Weekly QReportBuilder Webinars Thursday 1 pm CST

              Occam's Razor - KISS
              Normalize till it hurts - De-normalize till it works.
              Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
              When we triage a problem it is much easier to read sample systems than to read a mind.
              "Make it as simple as possible, but not simpler."
              Albert Einstein

              http://www.iadn.com/images/media/iadn_member.png

              Comment


                #8
                Re: Roomier Lookup

                The basic problem is the wide range of sizes for the Contents field. Users will be allowed to add records to Contents, and they tend to put the repetitive stuff at the beginning of the description and the distinctive qualifications at the end.

                Comment


                  #9
                  Re: Roomier Lookup

                  Originally posted by Sandy Garrett View Post
                  The basic problem is the wide range of sizes for the Contents field. Users will be allowed to add records to Contents, and they tend to put the repetitive stuff at the beginning of the description and the distinctive qualifications at the end.
                  Ok, is the image I've shown what you want?
                  Al Buchholz
                  Bookwood Systems, LTD
                  Weekly QReportBuilder Webinars Thursday 1 pm CST

                  Occam's Razor - KISS
                  Normalize till it hurts - De-normalize till it works.
                  Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                  When we triage a problem it is much easier to read sample systems than to read a mind.
                  "Make it as simple as possible, but not simpler."
                  Albert Einstein

                  http://www.iadn.com/images/media/iadn_member.png

                  Comment


                    #10
                    Re: Roomier Lookup

                    Your cure is too easy to be useful <G>.

                    Actually it has too much white space. Most of the records can manage nicely with a single browse row. At least 90%, I'll guess, although it's too soon to be sure. So the single row browse should be the standard with the ability to expand for rare occasions.

                    It's hard to imagine nobody has bumped into this before. I had to rewrite our uniform descriptions so the distinctions showed earlier in the description, and there was still one where the user has to select blindly and change if the wrong item comes up.

                    What do other people do when looked up info is long?

                    The jury is still out on Tom's fix. That Jing is not uncomplicated and my brain needs a rest.

                    Comment


                      #11
                      Re: Roomier Lookup

                      Random thoughts.

                      An HTML table would display the data better and expand and contract as needed.

                      Of course, so would an Alpha report with a button on it..

                      Would the user know a word they are looking for or just browsing for something that causes them to recognize a match?
                      Al Buchholz
                      Bookwood Systems, LTD
                      Weekly QReportBuilder Webinars Thursday 1 pm CST

                      Occam's Razor - KISS
                      Normalize till it hurts - De-normalize till it works.
                      Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                      When we triage a problem it is much easier to read sample systems than to read a mind.
                      "Make it as simple as possible, but not simpler."
                      Albert Einstein

                      http://www.iadn.com/images/media/iadn_member.png

                      Comment


                        #12
                        Re: Roomier Lookup

                        Some more random thoughts
                        If you change the field type to memo. Leave the browse as one line height if you wish. Put focus on the field...
                        a) if the browse is in edit mode the pencil icon allows the user to click and read all text within, including paragraph breaks.
                        b) If the browse is in view mode a second click opens the field in a dialog.
                        IMHO the advantages outweigh the disadvantages.

                        Comment


                          #13
                          Re: Roomier Lookup

                          Originally posted by Ray in Capetown View Post
                          Some more random thoughts
                          If you change the field type to memo. Leave the browse as one line height if you wish. Put focus on the field...
                          a) if the browse is in edit mode the pencil icon allows the user to click and read all text within, including paragraph breaks.
                          b) If the browse is in view mode a second click opens the field in a dialog.
                          IMHO the advantages outweigh the disadvantages.
                          Ray

                          I've found that a browse works differently when it is in a lookup than as a browse. Some features and functions change.
                          Al Buchholz
                          Bookwood Systems, LTD
                          Weekly QReportBuilder Webinars Thursday 1 pm CST

                          Occam's Razor - KISS
                          Normalize till it hurts - De-normalize till it works.
                          Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                          When we triage a problem it is much easier to read sample systems than to read a mind.
                          "Make it as simple as possible, but not simpler."
                          Albert Einstein

                          http://www.iadn.com/images/media/iadn_member.png

                          Comment


                            #14
                            Re: Roomier Lookup

                            Sandy

                            I've found that if the lookup is displayed as a drop down, then the rows can be expanded and contracted.

                            Not sure if that helps, but might be worth a look.

                            expand_contract_dropdown_rows.JPG
                            Al Buchholz
                            Bookwood Systems, LTD
                            Weekly QReportBuilder Webinars Thursday 1 pm CST

                            Occam's Razor - KISS
                            Normalize till it hurts - De-normalize till it works.
                            Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                            When we triage a problem it is much easier to read sample systems than to read a mind.
                            "Make it as simple as possible, but not simpler."
                            Albert Einstein

                            http://www.iadn.com/images/media/iadn_member.png

                            Comment


                              #15
                              Re: Roomier Lookup

                              Originally posted by Sandy Garrett View Post
                              What do other people do when looked up info is long?
                              I'd do something like this.
                              search4wordinlookup.JPG

                              You know that daisy is in that entry. Since it's a drop down it can be expanded to multiple rows.

                              For those playing along at home here is the expanded row...
                              search4wordinlookup2.JPG

                              Originally posted by Sandy Garrett View Post
                              The jury is still out on Tom's fix. That Jing is not uncomplicated and my brain needs a rest.
                              Tom didn't like the solution and asked me to remove it.
                              Al Buchholz
                              Bookwood Systems, LTD
                              Weekly QReportBuilder Webinars Thursday 1 pm CST

                              Occam's Razor - KISS
                              Normalize till it hurts - De-normalize till it works.
                              Advice offered and questions asked in the spirit of learning how to fish is better than someone giving you a fish.
                              When we triage a problem it is much easier to read sample systems than to read a mind.
                              "Make it as simple as possible, but not simpler."
                              Albert Einstein

                              http://www.iadn.com/images/media/iadn_member.png

                              Comment

                              Working...
                              X