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

Dialog Posting Issue

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

    Dialog Posting Issue

    Hi Below is from a Dialog

    I am getting errors on posting to the table i believe from the initialize area. they return a value that is not numeric. But i need to keep the original table field to be numeric.
    Does anyone know how to convert a character to numeric before the post to the table.


    Initialize

    CurrentForm.Controls.month = month(date())
    CurrentForm.Controls.year = year(date())
    CurrentForm.Controls.Day = day(date())
    CurrentForm.Controls.store = "Alliston"


    After Validate

    tbl = table.open("totals as")
    tbl.enter_begin()
    tbl.store = alltrim(currentform.controls.store.value)
    tbl.Month = alltrim(currentform.controls.month.value)
    tbl.Year = alltrim(currentform.controls.Year.value)
    tbl.Day = alltrim(currentform.controls.Day.value)
    tbl.Post_paid__ = alltrim(currentform.controls.Post_Paid.value)
    tbl.Pre_paid__ = alltrim(currentform.controls.Pre_Paid.value)
    tbl.Data_device = alltrim(currentform.controls.Data_Device.value)
    tbl.Upgrade_mig = alltrim(currentform.controls.Upgrade.value)
    tbl.Esn_with_phone = alltrim(currentform.controls.Year.value)
    tbl.Coam = alltrim(currentform.controls.Coam.value)
    tbl.Extended_warranty = alltrim(currentform.controls.EWP.value)
    tbl.Fun_bundles = alltrim(currentform.controls.Fun_Bundle.value)
    tbl.Expressvu = alltrim(currentform.controls.Express_Vu.value)
    tbl.High_speed_ = alltrim(currentform.controls.HSE.value)
    tbl.Bell_bundle = alltrim(currentform.controls.Bell_Bundle.value)
    tbl.enter_end(.t.)
    tbl.close()
    Last edited by chadbrown; 09-30-2008, 10:30 PM.
    Chad Brown

    #2
    Re: Dialog Posting Issue

    Chad,

    I am not sure what you are asking. You seem to be posting to the table, are you sayiong that it is not working?

    What exactly is not working?
    Gary S. Traub, Ph.D.

    Comment


      #3
      Re: Dialog Posting Issue

      Yes when its posting to the table, I am getting errors because the day =day(date()) returns is not numeric so when it posts it gives errors. saying it cant fit but the sizing is fine, if i change the field property to character it works but i have lots of filters that need the field to be numeric.
      Chad Brown

      Comment


        #4
        Re: Dialog Posting Issue

        Does anyone know how to convert a character to numeric before the post to the table.
        Use the Val() function.

        Code:
        MyCVar = "123.45"
        ?val(MyCVar)
        = 123.45
        -Steve
        sigpic

        Comment


          #5
          Re: Dialog Posting Issue

          Sorry Steve I'm still new where would i use that?
          Chad Brown

          Comment


            #6
            Re: Dialog Posting Issue

            Knowing evertyhing on the dialog form is "C"haracter you may want to convert on the store this way.

            Use: CONVERT_TYPE()

            example:
            tbl.Year = convert_type(alltrim(currentform.controls.Year.value),N)

            Legend is:

            V5
            "C" = Character

            "N" = Numeric

            "D" = Date

            "L" = Logical

            V6
            "T" = Time (date time value)
            Insanity: doing the same thing over and over again and expecting different results.
            Albert Einstein, (attributed)
            US (German-born) physicist (1879 - 1955)

            Comment


              #7
              Re: Dialog Posting Issue

              Hi I tried that and it now returns this error.

              Errors in: event.AfterValidate code:
              Variable "N" not found.
              Chad Brown

              Comment


                #8
                Re: Dialog Posting Issue

                Sorry, use quotes

                tbl.Year = convert_type(alltrim(currentform.controls.Year.value),"N")


                V5
                "C" = Character

                "N" = Numeric

                "D" = Date

                "L" = Logical

                V6
                "T" = Time (date time value)
                Insanity: doing the same thing over and over again and expecting different results.
                Albert Einstein, (attributed)
                US (German-born) physicist (1879 - 1955)

                Comment


                  #9
                  Re: Dialog Posting Issue

                  woohoo got it, the N was not in quotes
                  awesome thanks for the help.
                  Chad Brown

                  Comment


                    #10
                    Re: Dialog Posting Issue

                    CurrentForm.Controls.month = month(date())
                    CurrentForm.Controls.year = year(date())
                    CurrentForm.Controls.Day = day(date())
                    CurrentForm.Controls.store = "Alliston"

                    Chad,

                    CurrentForm.Controls.Day is string

                    day(date()) returns a numeric value

                    So, you need to convert the numeric to a string, and that is done with str() like this:

                    CurrentForm.Controls.Day = str(day(date()))

                    Now, if day in your table is numeric then you need to use:

                    tbl.day=val(CurrentForm.Controls.Day)

                    And if it is character in the table then:

                    tbl.day=CurrentForm.Controls.Day

                    Gary
                    Gary S. Traub, Ph.D.

                    Comment


                      #11
                      Re: Dialog Posting Issue

                      Thanks for all your help here is what worked.

                      Initialize

                      CurrentForm.Controls.month = month(date())
                      CurrentForm.Controls.year = year(date())
                      CurrentForm.Controls.Day = day(date())
                      CurrentForm.Controls.store = "Alliston"

                      After Validate

                      tbl = table.open("totals as")
                      tbl.enter_begin()
                      tbl.store = alltrim(currentform.controls.store.value)
                      tbl.Month = alltrim(currentform.controls.month.value)
                      tbl.Year = convert_type(alltrim(currentform.controls.Year.value),"N")
                      tbl.Day = convert_type(alltrim(currentform.controls.Day.value),"N")
                      tbl.Post_paid__ = convert_type(alltrim(currentform.controls.Post_Paid.value),"N")
                      tbl.Pre_paid__ = convert_type(alltrim(currentform.controls.Pre_Paid.value),"N")
                      tbl.Data_device = convert_type(alltrim(currentform.controls.Data_Device.value),"N")
                      tbl.Upgrade_mig = convert_type(alltrim(currentform.controls.Upgrade.value),"N")
                      tbl.Esn_with_phone = convert_type(alltrim(currentform.controls.Esn_With_Phone.value),"N")
                      tbl.Coam = convert_type(alltrim(currentform.controls.Coam.value),"N")
                      tbl.Extended_warranty = convert_type(alltrim(currentform.controls.EWP.value),"N")
                      tbl.Fun_bundles = convert_type(alltrim(currentform.controls.Fun_Bundle.value),"N")
                      tbl.Expressvu = convert_type(alltrim(currentform.controls.Express_Vu.value),"N")
                      tbl.High_speed_ = convert_type(alltrim(currentform.controls.HSE.value),"N")
                      tbl.Bell_bundle = convert_type(alltrim(currentform.controls.Bell_Bundle.value),"N")
                      tbl.enter_end(.t.)
                      tbl.close()
                      Chad Brown

                      Comment


                        #12
                        Re: Dialog Posting Issue

                        I accidently deleted your PM on this subject, did Gary's response satisfy your question to me?
                        Steve Wood
                        See my profile on IADN

                        Comment


                          #13
                          Re: Dialog Posting Issue

                          Yes actually the information from Pete fixed it all up. Thanks
                          Chad Brown

                          Comment


                            #14
                            Re: Dialog Posting Issue

                            Originally posted by peteconway View Post
                            Sorry, use quotes

                            tbl.Year = convert_type(alltrim(currentform.controls.Year.value),"N")


                            V5
                            "C" = Character

                            "N" = Numeric

                            "D" = Date

                            "L" = Logical

                            V6
                            "T" = Time (date time value)
                            Hi Peter

                            Have a similiar problem to Chad, I am trying to insert a value into the insert event code, but A5 is returning an error from SQL. The number I am inserting (3) is valid and conforms to the PK/FK relationships in SQL, so all I can guess is that (3) is still a string instead of numeric, and thats why the update wont go through

                            Does this part of the insert event code look right to you?

                            IF DataSubmitted.DoctorID = "" THEN
                            Datasubmitted.doctorid = 3
                            convert_type(alltrim(DataSubmitted.DoctorID),"N")

                            end if

                            Cheers

                            Jason

                            Comment


                              #15
                              Re: Dialog Posting Issue

                              IF DataSubmitted.DoctorID = "" THEN
                              Here you are testing for a string..
                              Datasubmitted.doctorid = 3
                              Here you are looking at a number you may want to try "3"
                              convert_type(alltrim(DataSubmitted.DoctorID),"N")

                              Should work - give it a go.
                              Insanity: doing the same thing over and over again and expecting different results.
                              Albert Einstein, (attributed)
                              US (German-born) physicist (1879 - 1955)

                              Comment

                              Working...
                              X