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

Check List Box

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

    Check List Box

    How can I add the selected items from Check List Box into Browse?

    #2
    Re: Check List Box

    John,
    How can I add the selected items from Check List Box into Browse?
    I really don't think that is what you really wish to do....you're asking to take a list, that is most likely generated by the table the browse is based upon, and add the checkmarked ones as new records to the browse. Unless the dialog box is from a different table....but then that would be quite a denormalized database which I doubt.

    Now if you want to use the list as a filter for what appears in the browse...or even "mark" the browse records that match your checkmarked ones then that is doable by using the variable in the xdialog.
    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: Check List Box

      Originally posted by johnkoh View Post
      How can I add the selected items from Check List Box into Browse?
      I assume that is an xdialog checkbox, which I believe returns a string of checked values. You need to parse the string, retrieve the values and open your "browse" table, and enter the records viz-a-vis a loop.

      So the code might look "something" like this:
      Code:
      vWordList= <<%str%
      cat
      dog
      house
      bat
      rat
      mouse
      fish
      %str%
      
      vCountWordList = w_count(vWordList,crlf())        ''count the number of words
      tbl = table.open()
      FOR i = 1 TO vCountWordList
          vWord = word(vWordList,i,crlf())
          tbl.enter_begin()
          tbl.assign_emp = vWord
          tbl.enter_end(.T.)
      NEXT i
      tbl.close()
      browse1.refresh()
      end
      Except that vWordList would be the checkbox return value variable which would already have your selection in there.

      Make sense?
      Peter
      AlphaBase Solutions, LLC

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


      Comment


        #4
        Re: Check List Box

        P.S. It probably requires one more step, because if your return variable is two fields. e.g.:

        0000000007Felix Tapia

        You need to parse vWord before doing your commits.
        Peter
        AlphaBase Solutions, LLC

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


        Comment


          #5
          Re: Check List Box

          Hi Peter,
          If this list of records is to be added to a separate table as you assumed, then his screenshot is a bit off as it lists 2 of the records that he also has checkmarked......but most likely is the correct guess thinking about it.
          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


            #6
            Re: Check List Box

            Peter & Mike,
            Thank you

            I want to insert the Selected employees name from the Check List Box to the (Workschedule) Browse. The line #1, 0...7 should be only one employee as Felix.. Line #2, 0...8 should be 2nd employee Fernando, line #3, 0...9 should be 3rd employee Gerador and line #4, 0...10 should be John Koh.

            Comment


              #7
              Re: Check List Box

              Peter and Mike
              Thank you for your help. It took me over 3 days to figured out. The xBasic concept is too hard for me.

              P/s: Mr. Mike Wilson
              Thank you for your script as
              "Current_list = All_employee_list - Already_selected_list" in the List Box.

              Comment


                #8
                Re: Check List Box

                Hi John,

                Mike and Pete put in a good effort here to get you a result. I'm pleased for you that Mike W. got you a working script, I think it would be nice for you to share it with us in order for others who might be trying or want to do the same thing.
                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


                  #9
                  Re: Check List Box

                  Good Morning, Keith

                  Sure. I can share it. I have enclosed the script here. I will make a zip file sometime on today.

                  'Create an XDialog dialog box to prompt for parameters.
                  DIM SHARED vAddEmp as C
                  DIM SHARED varC_result as C
                  dim shared vWrkschid as c
                  dim shared vSignedEmp as c
                  dim shared vActEmp as c
                  dim shared vAvailEmp as c
                  dim shared vCountSignEmp as N
                  dim shared vCountChkEmp as N


                  'get Worksch_id number from table
                  vWrkschid = parentform:worksch_id.value 'Object Name not a table FIELD name.


                  'get a list of the current assigned employee list from Wrksch_assign table
                  vSignedEmp=table.external_record_content_get("wrksch_assign","assign_emp","assign_emp","wrksch_id="+s_quote(vwrkschid))

                  'List of Multy Check Box
                  vActEmp = table.external_record_content_get("employees","Emp_Fullname","alltrim(emp_fullname)","Emp_active = \"Active\"")

                  'Count list items
                  vCountSignEmp=w_count(vSignedEmp,crlf())
                  vCountChkEmp = w_count(vActEmp,crlf())

                  'Subtract the two lists box. all list - current list. Try to list by only available employees
                  vAvailEmp=word_subtract(vActEmp,vSignedEmp)

                  ok_button_label = "&OK"
                  cancel_button_label = "&Cancel"
                  varC_result = ui_dlg_box("Select the Employees",<<%dlg%
                  {region}
                  Check List:| [%d;O={@@}%.40,15vAddEmp^$$vAvailEmp];
                  {endregion};
                  {line=1,0};
                  {region}
                  <*15=ok_button_label!OK> <15=cancel_button_label!CANCEL>
                  {endregion};
                  %dlg%)


                  tbl=table.open("wrksch_assign")


                  vCountList = w_count(vAddEmp,crlf())

                  dim i as n
                  for i = 1 to vCountList
                  vAddEmp=word(vAvailEmp,i,crlf()) 'Tried vAddEmp but not work
                  'This script is important and complication. ( I think, just on me)

                  tbl.enter_begin()
                  tbl.Assign_emp=vAddEmp
                  tbl.Wrksch_id=vWrkschid
                  tbl.enter_end(.t.)
                  next i
                  tbl.close()

                  parentform:browse1.refresh()
                  end

                  Comment

                  Working...
                  X