Search results

  1. P

    Windows mobile\CE

    How about Windows Embedded? I saw that this is another common option for handhelds as well. I read on StackExchange that someone claimed it is similar to a full fledged XP installation and will run almost any program. Thanks for your help.
  2. P

    Windows mobile\CE

    has anyone had any experience with Windows mobile or Windows CE and running a progress application? Can you run programs like you can on Windows 7 with start up parameters? Specifically to connect to the database.
  3. P

    Input from Serial Device (Arduino)

    Thank you for the code! This is the path that I was thinking of taking by just sending a serial command to the Arduino, having it dump the file to the network and then having the program pick it up. They have the Arduino Yun now that has linux built into it. Similar to the Raspberry Pi...
  4. P

    Input from Serial Device (Arduino)

    I need to input machine operating parameters from an arduino and dump them to our Syteline DB tables. The arduino will be connected to COM1. How should I go about doing this? I was reading that an INPUT STREAM FROM opsys-device command may work but I didn't know how to set it up. The arduino...
  5. P

    Progress on Linux Box

    Hi, Has anyone installed Progress on Linux? I want to run a simple app connected to our database on Raspberry Pi 2+'s on our assembly lines for data entry/component controls (motors, temperature sensors, etc). I know there is WINE for the various Linux distributions, however, I saw that there...
  6. P

    Unformatted OS Command Value

    Do you know how I could systematically do this? I am having the file location dump to a variable in an app and then I need to be able to run it when passed to an OS-Command. Can the tilde be put at the beginning of the strand somehow?
  7. P

    Unformatted OS Command Value

    Hi Everyone, I'm trying to run an OS-Command to open a file but when it copies the file name over it is cutting it off once it reaches any special characters. For example assume the below: def var filepath as char no-undo. filepath = "\\nas\company\drawings\product(x).pdf". os-command silent...
  8. P

    Multiline Variable Value

    Worked perfect TheMadDBA, thank you!
  9. P

    Multiline Variable Value

    Does anyone have a recommendation on how to create a multiline variable? I believe I've done this before I just can't seem to remember right now. I have multiple entries in a table that match up to a value that I need to create a variable from. For example, if I were to output this to a text...
  10. P

    Find Where "Entry" is Currently Applied

    Is there a way to find what field "entry" is currently applied to? I want a button to run two functions: one for each field depending on which field is being used at the time of clicking the button. I know the command 'Apply "Entry" to FIELD1' but I want something similar to the following: IF...
  11. P

    Publish AppBuilder App

    For the shortcut would I run the .w file or the .r file? Sorry for my lack of knowledge on this, I haven't worked with AppBuilder much
  12. P

    Publish AppBuilder App

    Does anyone know how to publish/package an app builder app for client use? I have the app built as an app builder file (.w) but I want it to be executable as a desktop app.
  13. P

    Calculated Fields AppBuilder

    Does anyone know how to enable user editing on a calculated field in a browse widget? I have the following calculated field in the expression editor: string(symix.coitem.qty-ordered / symix.item.boxqty) I want the user to be able to change the quantity outputted to this field so they can run...
  14. P

    Delimited Variable

    Is there a way to break a delimited variable into columns of a temp table similar to the procedure for importing a delimited file? For example I want to break the following string: PONum:123456, Item:test1, Quantity:3 Into a temp table to look like this: PONum:123456 |...
  15. P

    Running App out of Another App (Appbuilder)

    What do I define lv-handle as? I'm new to App Builder so please excuse any simple fixes that I don't know. Also, I've run .p files before with inputs and outputs, however, is this the same process to get outputs from .w files? Or would I define a global variable to match up between apps?
  16. P

    Running App out of Another App (Appbuilder)

    I'm trying to run an app out of another app - both built using AppBuilder. What I want to do is have the user click a button that would load another app similar to a pop up window where they would load job data through some barcode validation processes I setup, click a button, and the data would...
  17. P

    Removing Non-Alpha Characters from String

    I should of mentioned we're running version 9.1 so that isn't available. Thanks for the suggestion though.
  18. P

    Removing Non-Alpha Characters from String

    Hi. Does anyone know an easy way to remove non-alpha characters from a string? The only way that I can think of is to run a string of replace commands, however, this doesn't look clean at all in my code. If there is an easier way I would rather run that. Here is what I am trying to do: Original...
  19. P

    Put Unformatted "{"

    I'm trying to generate a javascript file from our database to run in a separate program. When I'm using the following line I'm getting an error after the open bracket PUT UNFORMATTED "function myfunction() {" SKIP. Does anyone know how to put the open bracket without an error?
  20. P

    Go to Field after Input

    Does anyone know how to make an app in app builder go to a field? For example, after someone hits a submit button in my app, I want it to return their cursor to the first field rather than making them hit tab multiple times. Thank you in advance.
Back
Top