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

adhoc browse question

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

  • Ray in Capetown
    replied
    Re: adhoc browse question

    Originally posted by johnkoh View Post
    Al,



    Do you have a sample? How do I build a browse?
    John, see post #10

    Leave a comment:


  • Al Buchholz
    replied
    Re: adhoc browse question

    Originally posted by johnkoh View Post
    Al,
    Do you have a sample? How do I build a browse?
    That was a suggestion to Ray. We'll see what he finds.

    Leave a comment:


  • johnkoh
    replied
    Re: adhoc browse question

    Al,

    Have you thought about how to pass a list of fields to use and build a browse rather than use the default browse with all of the fields on it.
    Do you have a sample? How do I build a browse?

    Leave a comment:


  • martinwcole
    replied
    Re: adhoc browse question

    Thank's Ray
    I found a hidden solution in plain sight!!
    From the browse made by adhocview, if you click print, and select "browse", you get the familiar option to send an email as an excel or pdf
    and since i have pop 3 settings and use the alpha emailer, I cna send it to anyone I like

    Leave a comment:


  • Ray in Capetown
    replied
    Re: adhoc browse question

    To do the export you mention, create a udf exactly as is below AND then call the browse, with a name for the button parameter.
    Run the browse, press the button. This code will show how you can receive parameters from the XML browse in response to a button push - in here code to create your XLS table and send it. In the example XML posted earlier, the message can be a filter string and will be activated in an "=" character exists.


    Code:
    FUNCTION RunFrmBrwButton AS C (Buttn AS C, fil AS C, msg AS C = "", recn AS C ="")
    	ui_dlg_box("RunfrmButton","Butt - "+Buttn+";Table - "+fil+";Messg - "+msg+";Recn - "+recn)
    END FUNCTION
    The function also gets the record number if required. That was a tricky bit for me to get.
    For different browses that may be used just branch to the relevant section of code for each.

    Leave a comment:


  • Ray in Capetown
    replied
    Re: adhoc browse question

    Originally posted by martinwcole View Post
    I suspect this could all be done with xdialog - but would be a challenging project (beyond my capabilities)
    1. give the user the same options in a simulated adhocview Which in particular ?
    1. auto export the browse to a sepcified location as an excel
    3. bring up an email dialog with the excel as an attachment for them to send it to (with the sendto and sendfrom filled in from global variables)

    Leave a comment:


  • martinwcole
    replied
    Re: adhoc browse question

    I suspect this could all be done with xdialog - but would be a challenging project (beyond my capabilities)
    1. give the user the same options in a simulated adhocview
    1. auto export the browse to a sepcified location as an excel
    3. bring up an email dialog with the excel as an attachment for them to send it to (with the sendto and sendfrom filled in from global variables)

    Leave a comment:


  • Ray in Capetown
    replied
    Re: adhoc browse question

    Interesting idea Al
    I haven't had the need but its possible
    I'll post back here if I get a sample going.

    Leave a comment:


  • Al Buchholz
    replied
    Re: adhoc browse question

    Ray

    Nice code.

    Have you thought about how to pass a list of fields to use and build a browse rather than use the default browse with all of the fields on it.

    Hmm... or set the width to zero for fields that aren't on a list....

    Leave a comment:


  • Ray in Capetown
    replied
    Re: adhoc browse question

    Yes Robin , its easier to upload another, how could I have forgotten you are an XML dlg junkie.
    You can run this with only the first three params to get the idea.
    I think this one calculates optimum sizing, optional filter, action button, editable/not, and so on.
    Attached Files
    Last edited by Ray in Capetown; 11-25-2015, 02:14 PM.

    Leave a comment:


  • Al Buchholz
    replied
    Re: adhoc browse question

    Originally posted by martinwcole View Post
    Well .... an "Adhoc Browse" was a method Alpha came up with for users in Runtime to create their own browse - fields, query, order, etc. But the toolbar has no emailto feature or way to save the browse for later use. That may be the reason it was never used much. The client wants the functionality of an Adhoc browse, but with features it does not have. And you have to start over from scratch each time.

    Naturally this could be handled easily if they said what tables and sets they want available, and what fields, and what fields to query on, but they don't want to pay for it. If I could just alter the toolbar/menu to let them email the browse as an Excel would be nice. Or, better yet, a way to add an option I could use to program it to auto save as an Excel and auto email to the menu/toolbar.
    Records - Export Selected Records - brings up a dialog of choices. works in dev or runtime when browse is in view mode.

    Leave a comment:


  • MoGrace
    replied
    Re: adhoc browse question

    Hi Ray,
    Have you shared your generic UDF for generating a browse here somewhere? I know I'd like to see it!

    Leave a comment:


  • Ray in Capetown
    replied
    Re: adhoc browse question

    While you are hatching your Eureka plan
    consider a button on a XML browse with "save as Excel" button after they have sorted and filtered - lets you off the hook.
    But probably restricted to a single table.

    Leave a comment:


  • martinwcole
    replied
    Re: adhoc browse question

    Actually, I've got an idea - will get back to you later if it works

    Leave a comment:


  • martinwcole
    replied
    Re: adhoc browse question

    Well .... an "Adhoc Browse" was a method Alpha came up with for users in Runtime to create their own browse - fields, query, order, etc. But the toolbar has no emailto feature or way to save the browse for later use. That may be the reason it was never used much. The client wants the functionality of an Adhoc browse, but with features it does not have. And you have to start over from scratch each time.

    Naturally this could be handled easily if they said what tables and sets they want available, and what fields, and what fields to query on, but they don't want to pay for it. If I could just alter the toolbar/menu to let them email the browse as an Excel would be nice. Or, better yet, a way to add an option I could use to program it to auto save as an Excel and auto email to the menu/toolbar.

    Leave a comment:

Working...
X