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

E-Mail address book?

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

    E-Mail address book?

    I guess there still is no address book for the A5 e-mail client.

    In the V6 forum, Tom Cone said:

    Yes, any table with an e-mail field can be an address book.
    which I guess is true in a way, if one builds, say, a button script to use it. However, what is needed is when the A5 client's send screen pops up and the user starts typing in the To: line, it auto fills (as one types) an entry from some table of addresses, like any full feature e-mail client would presumably do. Filling in the To: line before popping open the send window won't do in all circumstances, like when one selects send from a preview screen.

    Any ideas or comments about this?

    Ray


    #2
    Re: E-Mail address book?

    Ray --

    I listed the names in a browse & put the script "Send an e-mail message" on the OnRowDblClick event. This starts the email program and the address is already in the To: field. Seems to work well & it's only one line of a script. If you want to do it in Xbasic, I have copied it & listed it below.

    I don't know how you would do this if you started the email program first.

    -- Dick James

    Code:
    'Send an e- mail message using the Alpha Five e-mail clilent.
    if is_object(topparent.this) then 
    	form_name = topparent.name()+".this"
    else
    	form_name = ""
    end if
    Dim message_type as c 
    message_type = ""
    to_var  = a5_eval_expression("=Browse4:Email1.text")
    param_to = to_var
    subject_var  = a5_eval_expression("=\"A message from \"+Var->gloPropertyName")
    param_subject = subject_var
    cc_var  = a5_eval_expression("=Browse4:Email2.text")
    param_cc = cc_var
    param_bcc = ""
    message_text = ""
    param_message = message_text
    attachment_list = ""
    param_attachments = alltrim(attachment_list)
    'Send the e-mail using the external e-mail client
    email_client_external(param_to,param_subject,param_message,param_attachments,param_cc,param_bcc)

    Comment


      #3
      Re: E-Mail address book?

      [quote=DickJames;418441]Ray --

      I don't know how you would do this if you started the email program first.

      -- Dick James

      Dick,

      Thanks, and yeah, I think it is a wish list item.

      Ray

      Comment


        #4
        Re: E-Mail address book?

        I must have missed the point here. How are you going to get the client and email in the first place? You probably have to type them, get it as an email in, or from another table?

        If you type them in, why not type them in a table, press the button where you set up your email and the address is there.

        If you get it as an email, all the functions are there to get them into that table. again the same scenario as above.

        If you get them from another table?: why not set it up in the other table or append to the table you wish and again do as above.

        Did I miss the point here? I send about 500 emails a week and when I am broadcasting, it could go well into the thousands.

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

        Comment


          #5
          Re: E-Mail address book?

          Dave,

          Ray Lyons' original post: ...what is needed is when the A5 client's send screen pops up and the user starts typing in the To: line, it auto fills (as one types) an entry from some table of addresses, like any full feature e-mail client would presumably do. Filling in the To: line before popping open the send window won't do in all circumstances, like when one selects send from a preview screen...
          I too send e-mail using scripts where the To: line is already filled in. That's not what I am looking for. I have a client who thinks he may want to use the A5 e-mail client just for sending (from, e.g., the report preview screen) but even if it could be does not want the To: line pre-filled in but does want it to work like most other e-mail clients that have an address book so that when you start to type "ira" it auto files the rest to "[email protected]" so that you do not have to remember the actual address.

          Like I said, this is probably a wish list item, and probably will never happen.

          Ray

          Comment


            #6
            Re: E-Mail address book?

            I understand. It is always the same. People want the app, but they also want it to have all the functions everybody else's has. Maybe Microsoft windows can star grilling hamburgers.

            So you know, our 1.5 million dollar app doesn't even send email at all. It was 1.5 millionto install and it still costs over 20,000 per month.

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

            Comment


              #7
              Re: E-Mail address book?

              It's a different can of worms but the reason this client wanted to try using the A5 e-mail client for sending only is because using the MAPI that Outlook uses has in the past caused problems with V7 (they are just getting ready to move to V8). The strange thing is that sometimes a user will get a MAPI error, sometimes no error, just a freeze up, and the latest one I heard is that some users can send a report successfully the first few times they do it but after 5 or 6 times later in the day everything freezes up (memory leak?) when they try the same thing again.

              Since I believe that the A5 e-mail client does not use MAPI, the thought was that maybe just for sending reports they could use the A5 e-mail client. That's when the issue came up of sending a report directly from the report preview screen and there is no option other than remembering and typing in the full address of the recipient. Yes, I know I could give them a button that previews and then when they close the preview opens a dialog allowing them to select an e-mail address before opening the A5 e-mail client with the PDF attachment, but that is not what they prefer. Besides, in another app and context I have had some troubles with that latter option with v7--but again when Outlook was used. Everyone except me seems to want to use Outlook.

              I have never used Outlook myself, but from all reports it seems to be a pretty crappy program--or maybe it is just the MAPI, I do not know. I used to have a client whose network users all used Eudora and we had very few problems with A5 functions. Then some brain with power said they had to switch to Outlook and @#%$^&*@! Now Qualcom has pulled the plug on Eudora, so it is no longer a real option until they get the new, open source version out sometime this year. I now use Thunderbird but I think it uses the same MAPI that Outlook uses. Eudora, I believe, used only a subset of MAPI--but truthfully I do not know much about any of this. I just want A5 e-mail functions to work perfectly so my client will leave me alone!

              Ray

              Comment


                #8
                Re: E-Mail address book?

                If you really want to, you can substitute alpha's dialog window with yours. It's one xdlg instead of another. On yours, put a field with progressive lookup for the "To" field.

                Comment


                  #9
                  Re: E-Mail address book?

                  I am doing somethig along these lines already -

                  I have a table called contacts that has a name and email address. When the client clicks the "email report" button I bring up a dialog letting them check the contacts to send it to from the list, and then bring up the email dialog with the selected names already filled in, report attached, ready to go.

                  It would be pretty easy to let them start typing to get selections - but the contact list is unique to Alpha - not their email address book.

                  Actually, unless there is a very long list of contacts, checking is quicker and easier.
                  Cole Custom Programming - Terrell, Texas
                  972 524 8714
                  [email protected]

                  ____________________
                  "A young man who is not liberal has no heart, but an old man who is not conservative has no mind." GB Shaw

                  Comment


                    #10
                    Re: E-Mail address book?

                    Gabe and Martin,

                    Interesting ideas. Although it appears that the Send Report As drop down on the print preview tool bar is not editable, I suppose one could just delete it and replace it with a new xdialog that would do what I want--at least I think so. If it's that simple and assuming it would work, one has to wonder why an address book is not a built-in feature for the A5 e-mail client.

                    Ray

                    Comment


                      #11
                      Re: E-Mail address book?

                      Originally posted by Raymond Lyons View Post
                      .....but does want it to work like most other e-mail clients that have an address book so that when you start to type "ira" it auto files the rest to "[email protected]"
                      Gee, I seemed to have chosen the wrong domain name!:D

                      In terms of your problem, one would have to mimic the A5 dialog to look at a list from a table or other source. It probably could be done, but I'm not sure you could replace Alpha's, but could use it in your own routines.
                      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


                        #12
                        Re: E-Mail address book?

                        Sure... everything is possible.
                        Here you go.
                        I didn't include all the bells & whistles..
                        It works just fine.
                        Last edited by G Gabriel; 05-11-2007, 05:16 AM.

                        Comment


                          #13
                          Re: E-Mail address book?

                          Aha! How are we supposed to take your stuff seriously when your Cancel button doesn't do anything?

                          Just kidding, this is a good piece of work, as usual. Thanks.

                          Now, just curious: Why did you do the "Send" as a form and not an Xdialog? Did the set the form is based on have anything to do with that?

                          Ray

                          Comment


                            #14
                            Re: E-Mail address book?

                            Why did you do the "Send" as a form and not an Xdialog?
                            because the darn thing decided it's not going to work on Monday!
                            I did something simillar in an xdlg few days ago in response to another thread and it worked just great..but today.. who knows! so, instead of banging my head on the wall, just went with a form until I unravel that mystery.

                            Did the set the form is based on have anything to do with that?
                            No.

                            Comment

                            Working...
                            X