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

Dynamic (filtered) List Boxes in Xdialog Boxes

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

    Dynamic (filtered) List Boxes in Xdialog Boxes








    New Page 1





    A user on the message box asked about creating a list box on an Xdialog that
    could be dynamically filtered.
    I posted the answer in the thread where the question was asked, but it
    occurs to me that the answer would be of interest to all users who have started
    discovering the joys of Xdialog.
    Note: You must have an understanding of Xdialog events in order to understand
    this. If you are not familiar with Xdialog events, you should refer to the
    "Learning Xdialog" book.
    This script has a combo box where you can select a state, and then a list box
    which shows the customers in the selected state. Paste this code into a
    new script in AlphaSports. You will see that it shows the customers for a
    selected state.
    The key to the script is to regenerate the list whenever the state changes.
    So we put the code that generates the list into a function (called
    get_data() ), and we call the function whenever the state changes.
    Another thing worth noting is that we have defined a variable called "VL"
    which points to the local variable frame. ( local_variables() ). When we call
    the get_data() function, the only parameter that we pass in is the VL variable.
    This means that the function can see all of the variables defined in the script
    and that any variables defined in the function are visible outside the script.
    This saves us from having to pass in a list of parameters every time we call the
    function, and from having to have the function return a particular value.


    'Create an XDialog dialog
    box to prompt for parameters.
    DIM SHARED state as C
    DIM SHARED customers as C
    DIM SHARED varC_result as C

    auto_list_state =
    table.external_record_content_get("customer","Bill_State_Region","Bill_state_region",".t.
    .and. unique_key_value()")
    temp_count = w_count(auto_list_state,crlf())
    DIM a_state[temp_count] as c
    a_state.initialize(auto_list_state)



    DIM a_customers[1] as c

    dim vl as p
    vl = local_variables()
    state = "MA"

    Dim format as p
    Format.tab_stops=""
    Format.odd_row_color="White"
    Format.even_row_color="Blue White"
    Format.odd_selected_color="Dark Blue"
    Format.even_selected_color="Dark Blue"
    Format.font="Arial,8"
    Format.font_color_unselected="Black"
    Format.font_color_selected="White"
    Format.lastbutton="OK"
    Format.group_size=2
    Format.number_rows=.f.
    Format.alternating_bands=.t.

    get_data(vl)

    ok_button_label = "&OK"
    cancel_button_label = "&Cancel"
    varC_result = ui_dlg_box("Alpha Five",""%dlg%
    {region}
    Which State:| [%v%.37state^=a_state!state_changed];
    Select Customer:| [%d;O={@@}%.100,20customers^#a_customers];
    {endregion};
    {line=1,0};
    {region}
    "*15=ok_button_label!OK" "15=cancel_button_label!CANCEL"
    {endregion};
    %dlg%,""%code%
    if a_dlg_button = "state_changed" then
    a_dlg_button = ""
    get_data(vl)
    end if
    %code%)



    '-----------------------------------------------------
    function get_data as c (vars as p)
    with vars
    'IMPORTANT ---make sure
    that this command is all ONE LINE --
    auto_list_customers =
    table.external_record_content_get("customer","alltrim(Customer_Id) +
    \"|{I:'a5_vertical_line'}\" + alltrim(lastname) + \"|{I:'a5_vertical_line'}\" +
    alltrim(firstname) + \"|{I:'a5_vertical_line'}\" + bill_state_region","Lastname","(Bill_state_region
    = " + quote(var-"state)+")")

    'Apply 'owner draw'
    formatting information to the list
    auto_list_customers = a5_owner_draw_list_fmt(auto_list_customers,Format)
    temp_count = w_count(auto_list_customers,crlf())
    REDIM a_customers[temp_count] as c
    a_customers.clear()
    a_customers.initialize(auto_list_customers)
    customers = a_customers[1]
    end with
    end function







    #2
    RE: Dynamic (filtered) List Boxes in Xdialog Boxes

    just for kicks, here's an alternative formulation that doesn't use arrays and doesn't use a function. the end result is the same:


    'Create an XDialog dialog box to prompt for parameters.
    DIM state as C
    DIM customers as C
    DIM varC_result as C

    auto_list_state = table.external_record_content_get("customer","Bill_State_Region","Bill_state_region",".t. .and. unique_key_value()")

    vl = local_variables()
    state = "MA"

    Dim format as p
    Format.tab_stops=""
    Format.odd_row_color="White"
    Format.even_row_color="Blue White"
    Format.odd_selected_color="Dark Blue"
    Format.even_selected_color="Dark Blue"
    Format.font="Arial,8"
    Format.font_color_unselected="Black"
    Format.font_color_selected="White"
    Format.group_size=2
    Format.number_rows=.f.
    Format.alternating_bands=.t.

    cmd=state)+")")
    auto_list_customers = a5_owner_draw_list_fmt(auto_list_customers,Format)
    %str%

    evaluate_template(cmd)

    ok_button_label = "&OK"
    cancel_button_label = "&Cancel"
    varC_result = ui_dlg_box("Alpha Five",
    {endregion};
    %dlg%,

    the evaluate_template() function can execute multiple lines of code and is roughly equivalent to a function that returns nothing (void).
    i removed the array references that selwyn used. the xdialog genie produces arrays for list boxes, but the arrays are not necessary.

    Comment


      #3
      RE: Dynamic (filtered) List Boxes in Xdialog Boxes

      Thanks Selwyn and Peter

      Selwyn, I�m just wondering why do you say that the code has to be in line
      -------------------
      Note. when you copy the above code, the following code must be just one line.

      auto_list_customers = table.external_record_content_get("customer","alltrim(Customer_Id) + \"|{I:'a5_vertical_line'}\" + alltrim(lastname) + \"|{I:'a5_vertical_line'}\" + alltrim(firstname) + \"|{I:'a5_vertical_line'}\" + bill_state_region","Lastname","(Bill_state_region = " + quote(var->state)+")")
      -------------------------

      I tried it using the stranded line brake (\) in both formats yours and Peters and it seems to work fine
      It�s my understanding as long it is not the dialog code itself the brake line can be used, correct if I am wrong

      Daniel Weiss
      Daniel Weiss
      EZ Link Software

      Comment


        #4
        RE: Dynamic (filtered) List Boxes in Xdialog Boxes

        it has to be in one line, but if you use the xbasic "line continuation" then that's the same as being in one line.

        i did not want someone to copy the code and not have it work because they had line breaks in all of the wrong places.

        Comment


          #5
          RE: Dynamic (filtered) List Boxes in Xdialog Boxes

          !! Selwyn when dose your Sunday end (or begin)??
          Thanks
          Daniel
          Daniel Weiss
          EZ Link Software

          Comment


            #6
            RE: Dynamic (filtered) List Boxes in Xdialog Boxes

            I too thank you. This is a big help and a further lesson in dialog boxes.

            Thanks again!!

            Dan
            Dan

            Dan Blank builds Databases
            Skype: danblank

            Comment


              #7
              RE: Dynamic (filtered) List Boxes in Xdialog Boxes

              Thank you Selwyn and Peter. Another case of Mastery has broken out. May it keep spreading. Good use of the Vertical lines and the horizontal stripes. The more you show us the more we can all learn. Keep them coming.

              Keith Hubert
              London.
              Regards
              Keith Hubert
              Alpha Guild Member
              London.
              KHDB Management Systems
              Skype = keith.hubert


              For your day-to-day Needs, you Need an Alpha Database!

              Comment

              Working...
              X