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

return type of a method

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

    return type of a method

    anyone know the return type of .children() I tried to write the result to the trace window but get 'invalid arg' messages when I assume either type N or C. I am wanting to output the structure of a set to a table. Thanks in advance.

    #2
    RE: return type of a method

    According to the documentation

    obj = topparent.this 'get a pointer to the top form
    count = obj.children() 'find out how many child objects


    it would seem that the type would be numeric. How are you using the method?
    There can be only one.

    Comment


      #3
      RE: return type of a method

      This will sound more complex than it is, but here goes;

      .children() returns a number that is the number of tables in a set (or a 1 in a table). The number can be used in the .child() method to refer to the tables in a set. Each table in the set structure is numbered from the parent being the value returned by .children() to 1 which will be the bottom table in the set definition.
      Thus, you can access tables within the set definition by using the .child(number) to return a table pointer

      Regards,

      Ira J. Perlow
      Computer Systems Design & Associates
      [email protected]
      Regards,

      Ira J. Perlow
      Computer Systems Design


      CSDA A5 Products
      New - Free CSDA DiagInfo - v1.39, 30 Apr 2013
      CSDA Barcode Functions

      CSDA Code Utility
      CSDA Screen Capture


      Comment


        #4
        RE: return type of a method

        thanks for the quick response.

        I have a pointer, tbl, to an open set, using tbl =table.open("tablename.set")

        I have tried:
        trace.writeln(tbl.children())

        trace.writeln(str(tbl.children()))

        Dim tblptr as P
        tblptr = tbl.this
        writeln(str(tblptr.children()))

        to no avail, I am just wanting to see how many child tables there are in the set.

        thanks again

        Comment


          #5
          RE: return type of a method

          If you open (load?) a form based on the desired set, you could use

          :formname:tables.children() to get the number of tables in the set.

          You'd have to subtract 1 I suppose to find the number of child tables.

          It may not be necessary to show the form, in order to do this... which is why I put 'load' in parentheses above.

          -- tom

          Comment


            #6
            RE: return type of a method

            Rick,

            Here is a script I use to dentify open tables, their names & slot
            numbers. I think that this script uses some older syntax but it still
            works....


            ''XBasic
            traceln("Names of open Tables:")
            count = 1
            WHILE db_current(count) >= 0
            traceln(db_name_get(db_current(count))+" "+"Table Handle ="+""+ltrim(str(count)))
            count = count + 1
            END WHILE

            Comment


              #7
              RE: return type of a method

              Rick I think you are attempting to get the actual field ty0pes within the associated table. I have done this using a form. Get the Child numbers with

              count=:formname.Children()
              dim name[count] as c
              for i= 1 to count
              name[i]=child(i).type()
              writeln(name[i])
              next i
              end

              I think this is what you are looking for. I am not sure of this but I beleive that a character field is labeled "c", Date = "d", Numberic = "n" and a lable or the acutal form is named "v". Therefore if you omit the "v" and place the appropriate names in place of the single letters you will have something of value. Of course you could do the table with the enum functions as done in the wonderful documentor.

              Comment


                #8
                RE: return type of a method

                thanks all again, Doug, kinda what I was lookin for. I see a mention of using a form based on the set... is this the only way?!? I was under the impression that I could take a pointer to a table (which may be the main of a set) and get the .children() of it? I feel there is some good use to be made of this if I can get it to work.

                Again thanks,

                Rick

                Comment


                  #9
                  RE: return type of a method

                  Rick,

                  Supposedly, A5 can have only one Set open at a time. Thus, whenever a form is activated (but not necessarily shown), then you can reference the set via the form's properties. I have never figured out any way to use Table.open() to access Sets in any kind of reliable fashion.

                  This is one of the annoying A5 idiosyncracies that I dislike. Methods, properties and events should be consistent (except where it makes no sense) for all tables/sets/forms etc and to jump around as needed.

                  It's like comparing the x86 assemble language to the 68k assemble language. One is extremely regular, the other is not. Guess which one is not? It's the one with Intel Inside! :?)

                  By the way, I thought about using old Intel motherboards that had bugs on them (RAMDAC) as outdoor roofing shingles. Then I'd have Intel Outside!

                  Regards,

                  Ira J. Perlow
                  Computer Systems Design & Associates
                  [email protected]
                  Regards,

                  Ira J. Perlow
                  Computer Systems Design


                  CSDA A5 Products
                  New - Free CSDA DiagInfo - v1.39, 30 Apr 2013
                  CSDA Barcode Functions

                  CSDA Code Utility
                  CSDA Screen Capture


                  Comment

                  Working...
                  X