Search results

  1. Stefan

    Comment ABL Toast Notifications

    A custom URI scheme could be a puzzle piece. Disclaimer: I have never tried it.
  2. Stefan

    Upgrade from 9.1E to 12.8 (Windows)

    I think error 5553 is a red herring, this will occur when you try to define a temp-table like something unknown (also with 9.1E). DEFINE TEMP-TABLE ttfoo NO-UNDO LIKE ttfoo. Based on other errors in your compile log like: Compiling \\ariesn\aries\Shz\A-Cust\addcoi.p Unknown or ambiguous...
  3. Stefan

    Answered Question on xcoding

    signature-value was added in OpenEdge 12, so I do not think it will help you with your case, it's predecessor md5-value needed to be enabled by compiling with generate-md5. So if you did compile all versions of your r-code with generate-md5, then md5-value could help you to compare which are...
  4. Stefan

    OE Studio / GitHub integration

    Eclipse General / Workspace preference 'Refresh using native hooks or polling' combined with build automatically is a major file locker, but this stuff is useful for normal work, it can just get awfully in the way when changing branches. With 12.5+ there is even more tooling building models of...
  5. Stefan

    OE Studio / GitHub integration

    PDSOE 12.x with EGit works. PDSOE / EGit can be somewhat frustrating when doing Git stuff. PDSOE often jumps onto files to compile them, locking them resulting in EGit failing due to locked files, leaving a mess in your working tree. When your working tree was clean before you started you can...
  6. Stefan

    Answered Question on xcoding

    There is a paid service available at Recover 4GL/ABL source code encrypted by PROGRESS Xcode utility - the owner is member pdecode on this forum. Disclaimer: I have never used this service.
  7. Stefan

    Copying a Procedure Library

    Pretty sure the answer is yes. We do it the other way round, pls created on windows are (also) deployed to Linux.
  8. Stefan

    Create Random String

    message guid.
  9. Stefan

    Skipping An Unavailable Record

    A simple available cubpackconv should be sufficient: icbccnt = 0. for each ttcbc no-lock: assign lv_size = '' lv_back = '' lv_cup = '' . if item.backsize > '' then do for cupbackconv: find first cupbackconv no-lock where cupbackconv.inentity =...
  10. Stefan

    PASOE resources not getting released

    Not sure if this applies to you, but beware that there is a difference between a PASOE dev(elopment) and a PASOE prod(uction) instance. The dev instance will clean up all sorts of things whereas the prod instance will not, since it starts a singleton - see this article.
  11. Stefan

    Question ABL Wordle Application

    Although this hard-coded imagepath sucks: &SCOPED-DEFINE ImagePath "C:\Users\jdpja\OneDrive\Work Stuff\Saved Stuff\images\":U
  12. Stefan

    Progress Editor Temporary file

    Imagine you are able to lock down the .ped files, what are you going to when you find a .ped file with contents: run mindyourownbusiness.p Fire the user and hope they did not do anything too malicious?
  13. Stefan

    Question ABL Wordle Application

    Colors can be set dynamically using the color-table system handle. Unfortunately the same does not apply to the font-table system handle:
  14. Stefan

    Question ABL Wordle Application

    Nice and ouch, I would not want to be trampling over another application's fonts and colors. Develop it as a single .Net GUI .cls file instead?
  15. Stefan

    purge and resize db

    If you are starting the backup using the Windows Task Scheduler beware that this defaults the task priority to low, killing backup performance even when the system is doing nothing else - see Progress Knowledge Base article P169922
  16. Stefan

    Add and read CDATA into and from a XML file

    Only SAX supports cdata, see the write-cdata method. DOM may support cdata, since the create-node method does allow cdata as subtype. Read-xml and write-xml both do not support cdata, see archived community post, the enhancement request Jens created received four votes and has status 'Will not...
  17. Stefan

    Question How to calculate a X509 certificate's issuer name hash

    Why can you not assume? Is sslc not part of your client progress installation?
  18. Stefan

    Question Progress 9.1E and IBM AIX version

    See manual xcode utility: and from the notes section
  19. Stefan

    Question Progress 9.1E and IBM AIX version

    google: site:progress.com product availability 9.1e aix Provides Which versions of OpenEdge are supported against what AIX platform versions, which contains:
  20. Stefan

    Locking up when inactive?

    From the notes section of the disconnect statement manual:
Top