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

Display empty fields on a desktop form

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

    Display empty fields on a desktop form

    When a desktop form is first displayed, how can you keep all the fields blank? When a form is loaded, I do not want the first, middle, or last record to be displayed until the user actually locates a record. I also do not want to insert a blank to accomplish this. I want the ability to clear all fields on form without changing a record in a table. Can this be done?
    - V10.5 Desktop

    #2
    Re: Display empty fields on a desktop form

    Probably the answer to your question is that you want to start your form on a new record. On the toolbar above your form is a button for enter new record. Click it and your form will be blank and awaiting input to enter a new record or find an old one if you have lookups and/or scrolling set up.

    If you want your form to always start this way you need to have an on initiation enter new record instruction. Oninit > open new record. The open new record would be an action script (I think) associated with oninit that is associated with the form. I'm on my iPad now so can't be more specific. GL
    Last edited by swarrine; 01-05-2011, 01:43 AM. Reason: Answer not complete

    Comment


      #3
      Re: Display empty fields on a desktop form

      When a form is loaded, I do not want the first, middle, or last record to be displayed until the user actually locates a record. I also do not want to insert a blank to accomplish this. I want the ability to clear all fields on form without changing a record in a table. Can this be done?
      By default the field objects in your form layout are bound to live data in the table. If you clear all the field values from the current record you've just erased the current record. When you begin entering a new record all the input controls clear automatically.

      Having said that, there are at least two ways to accomplish your goal:

      a) Build your form binding your input controls to variables instead of table fields; then use a save button to enter the new record by assigning each variable value to its corresponding table field in the new record. Be aware however that since all forms and browses are bound to a table or set that table or set will be opened even if your input form only collects information using variables.

      b) Use an xdialog to collect the input from the user. The xdialog will not be bound to a table or set.

      Comment


        #4
        Re: Display empty fields on a desktop form

        Tom, thanks for your reply, you did fully understand my question.
        And I do understand your answer as well, however I am still hoping for a way without having to unbind from the table or insert a new record temporary.
        I came from developing applications using MS Foxpro, and MS Foxpro basically had a phantom record, which allow users to bring up forms without displaying the first record in the table. In Foxpro for example if you performed a search on a primary key and did not found a match, the Foxpro record pointer was placed on a phantom record. Also when you initially displayed a form, the foxpro record pointer was placed on a phantom record.
        So is there some type of phantom record in Alpha 5 or a way not to always display customer #1 to your users?

        Thanks again

        Comment


          #5
          Re: Display empty fields on a desktop form

          Darryl, the concept of a phantom record is not available in Alpha Five. With a bit of work I suppose you could save a blank record to the table and then write the scripts necessary to fetch / find the blank record when desired. I don't recommend it.

          Alpha will let you display whatever record you wish, so you wouldn't have to always display customer #1. It's possible to load the form in memory, navigate to the desired record, and then show it to the user.

          It's showing a record with blank fields, bound to the table, but without beginning a new record that cannot be done using an Alpha Five form.

          Comment


            #6
            Re: Display empty fields on a desktop form

            The concept of a phantom form is available through an xdialog form, as Tom has said. If the xdialog which is not bound to a table preceeds the form which is, then the search for the table record can occur through the xdialog prior to the presentation of the form showing the desired record(s). It would serve your needs.
            Mike W
            __________________________
            "I rebel in at least small things to express to the world that I have not completely surrendered"

            Comment


              #7
              Re: Display empty fields on a desktop form

              Dependent upon how you want to call the record you could visually do this on a form. How are you choosing a record? You must be showing something for the user to choose from right?

              You could have a button that does this once a specific record has been chosen from a list. Set the existing field properties to Hide all fields not wanted to show. Have text boxes instead which initially have the font color to match the background (form's OnInit event). From the button (OnPush event) change the font color to your normal text color (black?) and set the text value to equal the field value (or in the case of a numeric field, the field's text value).

              All of this can be done via Action Scripting.
              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


                #8
                Re: Display empty fields on a desktop form

                I am really new to Alpha Five, but unless I am missing something, I think I solved my issue by just setting the table filter to .F. Of course when I query a record, I change the filter. I assume this is all okay?

                Comment


                  #9
                  Re: Display empty fields on a desktop form

                  Just another way
                  I also crossed this path and no let it go to a new record. After I/user am done I erase all blanks with a little script. It works well for me. Been doing that for many versions.
                  Code:
                  a_tbl = table.open("names.dbf")
                  a_tbl.delete_range("ISBLANK(\"Phorwalk\").and.isblank(\"Buyer\").and.isblank(\"Fname\").and.isblank(\"Adv\")")
                  Change the names and filters to match your own. I run this on the start of my main page anytime it opens.


                  .
                  Dave Mason
                  [email protected]
                  Skype is dave.mason46

                  Comment


                    #10
                    Re: Display empty fields on a desktop form

                    Dave, thanks for the reply. But, what are your thoughts on just setting the table filter to .F.? This appears to be working great and it is really simple.
                    Thanks again.

                    Comment


                      #11
                      Re: Display empty fields on a desktop form

                      Originally posted by dharvey View Post
                      Dave, thanks for the reply. But, what are your thoughts on just setting the table filter to .F.? This appears to be working great and it is really simple.
                      Sounds like a plan.
                      Peter
                      AlphaBase Solutions, LLC

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


                      Comment


                        #12
                        Re: Display empty fields on a desktop form

                        If the .F. works. Great

                        actually, the most professional way(in my feeble mind) would be to put all the fields as variables on a form(no record involvement) and then devise your own way to write them to the table.

                        This goes back to the old days though I guess.

                        Still think of when I was told you could not create a dbf in alpha and manipulate it with xbasic. 1 or 2 versions later it happened. We did that in most languages years ago and all form fields were vars. Our install package was mostly all code and it wrote the dbf files, indexes, etc files and most of the files at install time. it then deleted unnecessary files. We were extremely space limited with 10 - 20 meg hard drives. A speed increase was found by putting all the code(whole program in a ram drive).

                        DHUT UP dave LOL


                        .


                        .
                        Dave Mason
                        [email protected]
                        Skype is dave.mason46

                        Comment

                        Working...
                        X