Search results

  1. jongpau

    Question Connection between Progress and external device PDA handheld through Webservices?

    It really is not Progress but OpenEdge. The name was changed many many moons ago. I do cop it that this site is still called ProgressTalk, but it is important to remember the correct name because it could help you find a solution: What version of OpenEdge is your QAD running on? If its using...
  2. jongpau

    Class name conversion error

    Looks like you are trying to instantiate the object (form) with <object variable> = new frmEMaint() when it should be <object variable> = new UI.general.frmEMaint().
  3. jongpau

    Answered Generating a QR Barcode

    Hi there! How do you call this from within OE? Do you call a web service? Any chance of showing some sample code of how to implement it?
  4. jongpau

    Answered Generating a QR Barcode

    I would not be able to tell you if it works on that OE version (its is too old and I have no access to test with it) We have not used anything but 10.2 for a long time now (and we are about to migrate to 11). Theoretically you should not have to do anything to your propath, what is important...
  5. jongpau

    Question Change Width Of A Static Browse

    I don't think there is one, sorry
  6. jongpau

    Question Change Width Of A Static Browse

    Hi, As per the OpenEdge help: In character mode, the WIDTH-CHARS attribute must be set before the browse is realized. Attempting to set the attribute after realization of the browse causes a run-time error.
  7. jongpau

    Craziest Progressism?

    Now THAT is obscure (and somewhat disturbingly scary?)
  8. jongpau

    Craziest Progressism?

    You are right and also showing your age ;)
  9. jongpau

    Craziest Progressism?

    DISPLAY NO-LOCK - 1 = SHARE-LOCK.and DISPLAY SHARE-LOCK - EXCLUSIVE-LOCK + SHARE-LOCK = NO-LOCK.
  10. jongpau

    Craziest Progressism?

    Not so much language related so a somewhat off-topic but I certainly remember the struggle with the r-code size limitations (what was it, 32kb max for a .r?). And then of course there was of the "fantastic" code editor prior to v6 where one wrong keystroke could overwrite your hard work with an...
  11. jongpau

    Craziest Progressism?

    I like calling that "Yes/No/Maybe" :)
  12. jongpau

    Question WebService Call TimeOut

    Have you investigated the option of doing the web service call asynchronously (using the ASYNCHRONOUS option)? This would allow your code to keep running and do other things while the web services goes about it's business. You then process the response when the web service call has finished.
  13. jongpau

    Question line-count of a stream

    No, line-counter only works on paged streams. It is intended help you to keep a count of what the line and on which page (page-number) as line numbers cycle back to 1 on a page-change. To keep a line counter of a non-paged stream you could use an integer variable and increment on output of each...
  14. jongpau

    Displaying Frames in Dual Monitors

    I had to do something similar - displaying a full-screen borderless OpenEdge window on a TV. Initially I just extended the Windows Desktop and set the X and Y of the OpenEdge Window to the top left coordinates of the extended screen. I had it set to the right of my main screen so I just set the...
  15. jongpau

    How to set help text in windows status area

    Hi Linus, I don't think it can be longer than 63 characters. The help text is displayed in the status area of the window and that has a maximum size of 63 characters. The format of the _help field is also 63 characters; this does not limit the field contents to that length, but does format it...
  16. jongpau

    Running openedge application from the web

    Hi Zadock, If your application currently is a "fat client" type application where the UI accesses the database then you will be in for a bit of work. Assuming you will want to keep your existing UI it is best (from a licensing/cost point of view) to look at using WebClient to run your UI...
  17. jongpau

    Question Read HTML

    What version of OpenEdge are you using, what is the target OS and is it GUI or Character? Adding this information really helps to answer questions. Assuming its GUI on Windows: If all you need to do is show the web page then in a OpenEdge GUI window then you can add a Microsoft Web Browser...
  18. jongpau

    Answered Generating a QR Barcode

    If you could translate that to English I might be able to help you :)
  19. jongpau

    Tomcat and Appserver Agent

    Hi, You can look into using STOP-AFTER, it was introduced in 10.2 (off the top of my head). From the online help: "STOP-AFTER expression The STOP-AFTER phrase specifies a time-out value for a DO, FOR, or REPEAT block. The integer expression specifies the number of seconds each iteration...
  20. jongpau

    Calculated Fields AppBuilder

    It really does not make any sense to enable a "calculated field". As the field does not have a name you cannot reference it in any way (enabled or retrieve the values that have been entered by the user). I suppose the only solution is - if your browse is showing temp-table fields you can...
Top