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

Help with script

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

    Help with script

    The following script was lifted from learn alpha.com. When placed on the on_init event of a form it will expand a form designed in 640x480 to 800x600 or 1024x768. It works with all objects except the tabbed subform.

    When the script reaches a tabbed subform, the beginning values for f.object.width and f.object.heighth are increased by an unknown factor. Then those values are multiplied by percnth and percntw. I can see it happen in the debugger, but can't figure out why it happens. Interestingly, the tabs on the tabbed subform are expanded properly.

    Any thoughts are appreciated.

    ''XBasic
    dim number as n
    dim i as n
    dim f as p
    dim percntw as n
    dim percnth as n
    dim SizeH as n
    dim SizeW as n
    dim name as c
    sizeH=UI_info(1)
    sizeW=ui_info(0)
    percntH = ((sizeH - 480) / 480)+1
    percntW = ((sizeW - 640) / 640)+1
    number = topparent.children()
    for i = 1 to number
    f = topparent.child(i)
    if eval_valid("f.object.top") = .f. then
    goto skip
    end if
    f.object.top = f.object.top * percnth
    f.object.height = f.object.height * percnth
    f.object.left = f.object.left * percntw
    f.object.width = f.object.width * percntw
    if f.class() = "text" .or. f.class() ="field"
    .or.f.class() = "Button" .or. f.class() = "Radio"
    .or.f.class()="twostbtn".or.f.class()="multistbtn" then
    f.font.size = f.font.size * percnth
    end if
    if f.class() = "Browse" then
    f.title.font.size = f.title.font.size * percnth
    end if
    if f.class() = "Tabbed" then
    f.tabs.font.size = f.tabs.font.size * percnth
    f.tabs.height = f.tabs.height * percnth
    f.tabs.width = f.tabs.width * percntw
    end if

    skip:
    next i
    end

    #2
    RE: Help with script

    Try this as a replacement for the final lines referring to tabbed objects:

    if f.class() = "Tabbed" then
    name = f.name()
    tab = "f:"+name+".object.height"
    f.tabs.font.size = f.tabs.font.size * percnth
    eval(tab) = f.tabs.height * percnth
    eval(tab) = f.tabs.width * percntw

    Comment


      #3
      RE: Help with script

      Thanks Steve,
      I get a message that "f.Tabbed1" is not found when the script reaches the eval(tab) line. All other ideas are appreciated.
      Ohlen

      Comment


        #4
        RE: Help with script

        Thanks Steve,
        I get a message that "f.Tabbed1" is not found when the script reaches the eval(tab) line. All other ideas are appreciated.
        Ohlen

        -------------------------
        Did you make what should have been a semicolon into a period. If the line failed, it should have returned, "f:tabbed1" not found. Check the piece of code I posted and make sure you're using a semicolon after the "f". That might fix it.

        Comment


          #5
          RE: Help with script

          You may also need the "eval(tab)" on both sides of the equality, e.g. eval(tab) = eval(tab)* percentw

          Comment


            #6
            RE: Help with script

            All punctuation was correct since I copied it directly from your reply. I'll try using eval(tab) on both sides of the expression this afternoon and report back to you.

            I've got my script working more reliably by rebuilding the form and removing the conditional objects and rich text objects. I also found some hidden fields on the form (it was imported from my old A5V4 app) which I removed. As I rebuild, I'll keep testing the form for reliability and keep you posted.

            If you get a chance I'd appreciate your explanation of the eval() expression since I don't understand it in this context.

            Comment


              #7
              RE: Help with script

              "Eval" simply evaluates an expression and returns the results of that expression. So eval(tab) in your case, returns:

              f:tabbed1.object.height

              This was what I found for this property after looking at the Xbasic Explorer window. Your original code referred to the height of the tab itself instead of to the tabbed object, and this was the simplest method that came to mind to create a pointer to the tab.

              In the end, we need your code to evaluate to this

              f:tabbed1.object.height = f:tabbed1.object.height * percntw

              Using eval on both sides shoud do it.

              Dr. Wayne did a great explanation of the eval function either on this board or on his web site which greatly helped me understand and use this function function. If it works, kudos should go to him

              Comment

              Working...
              X