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

A Thought for the developers

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

    A Thought for the developers

    I am now evluating an Acer Tablet computer as means of entering data into our application and am very impressed by the speed and ability of the handwriting recognition. The machine shipped with a Microsoft application called Sticky Notes and it would be so cool if there a field type that would accept the drag and drop of this handwritten sticky notes. Any thoughts guys ??
    Bob Whitaker
    Bob Whitaker


    #2
    RE: A Thought for the developers

    Hi Bob,

    I have adjusted one of Alpha's examples to get something that should be helpful. This is just a rough & ready example, but hopefully it'll show you how you might proceed.

    Paste the code below into the code editor. Run the script and move the box that appears to the right. Get any other application up and have that on the left of the screen. Now, if you press the 'control' key, any text on your clipboard will go into the firstname field. This will happen for any program and it does not matter which program is active or where your mouse is, so you don't need to leave whatever app you're in. I don't have Sticky Notes to check, but if, by simply selecting text, it automatically gets placed on the clipboard, all you need do is press the control key to get your data over.

    A few points:
    1) Obviously whatever data you paste will have to be the same data type as the receiving field and will be subject to whatever field length you have set for the field.
    2) This particular example runs in Xdialog but the basic idea is just an OnTimer script so I don't see why it couldn't run on a form
    3) You will need to do a little more coding to get the data saved
    4) To really speed your data entry, you could have the script auto-jump forward to the next rec as soon as your target field receives valid data.
    5) Even better, the script could blank the clipboard as it runs, and auto run again as soon as you put anything else on the clipboard.
    6) If you will not always be pasting into the same field in Alpha, you can extend the example above using UI_DLG_CONTROL_FROM_POS() to determine which control you have the mouse on top of and then the script could paste into that field, or use A_USER.MOUSE.EVENT to detect you clicking on the target field.

    Regards,
    Trevor


    dim dlg_title as C
    dlg_title = "Where is the Mouse"
    ui_dlg_box(dlg_title,""%dlg%
    {wrap=100}
    Move the mouse around the dialog. Notice that as you move the mouse, the current control's definition is shown.;
    {timer=timer}
    {interval=.05}
    {line=1,0};
    {lf};
    {region}
    First name: |[.20fname];
    Last name: |[.20lname];
    City: |[.20city] State: [.4state] Zip: [.6zip];
    {endregion};
    {line=1,0};
    {region};
    Current control:;
    {frame=1,1}
    {region}
    {text=80,2:current_control};
    {endregion};
    ;
    {endregion};
    {lf};
    "10&OK!ok" "10&Cancel!cancel";
    %dlg%,""%code%

    IF a_dlg_button = "timer" THEN
    a_dlg_button = ""
    current_control = ui_dlg_control_from_pos(dlg_title)
    current_control = remove_blank_lines(current_control)
    SELECT
    CASE sys_key_down("control")
    fname = :clipboard.get_data()
    END SELECT
    END IF
    %code%)

    Comment


      #3
      RE: A Thought for the developers

      Thanks Trevor that's really neat and has a place in what I am trying to achieve. Perhaps I should have been more explicit. Sticky notes is a computer based version of the "post it" notes that people use to stick their high security password onto the monitor of their PC. The added feature of sticky notes is that being on a tablet based PC it can be handwritten using the stylus. These notes can the be dragged and dropped into certain types of document i.e. word or wordpad or excel in much the same way you might stick a post it note on a paper document (except the adhesive is better !) I thought I would be great if you could drop these notes into a suitable field on Alpha record.
      Once again many thanks for your help.

      Bob
      Bob Whitaker

      Comment

      Working...
      X