Search results

  1. Stefan

    Question Unable to load shared library (14945)

    I notice that you are using the Oracle Instant Client, this does not work - see Progress Customer Community google site:progress.com error14945
  2. Stefan

    INSERT INTO with multiple rows without Select?

    Are you intentionally pointing to a Data Direct driver page? The 'regular' documentation at Progress Documentation has: So it would seem you are out of luck. You could question how SQL92 compliant this really is.
  3. Stefan

    Developer Studio accessing a remote PASOE Instance

    Leave localhost on the first page of the dialog and click on next. On the second page of the dialog you choose your OpenEdge Explorer connection, if you click on 'Configure...' next to that combo box you can add a config pointing to your remote OpenEdge Explorer.
  4. Stefan

    Opening Win32 session form a URL Link

    Sending messages sounds like a recipe for failure since your existing prowin session is not multi-threaded. I think at most you can let your application poll (using pstimer tick once a second or so) either: a. the database b. the file system For simplicity I would go with b.
  5. Stefan

    Understanding A Block Of Code

    You are not showing any iterating block, here is a simple example to get you started: define temp-table tt field ii as int. create tt. tt.ii = 1. create tt. tt.ii = 2. create tt. tt.ii = 3. ttblock: for each tt: if tt.ii modulo 2 = 0 then next ttblock. message tt.ii. end...
  6. Stefan

    Understanding A Block Of Code

    next does not jump to a next block, it goes to the end of the currently iterating block. CABL has a nice rule to flag next statements without a label.
  7. Stefan

    Opening Win32 session form a URL Link

    Disclaimer: I've never done this myself. You can register an application to a URI scheme: https://stackoverflow.com/questions/32694642/registering-an-application-to-a-uri-scheme-in-windows-10
  8. Stefan

    Mutual TSL /Client Certifcate authentication

    PASOE 12.x uses Tomcat 9.0. Apache Tomcat 9 (9.0.73) - SSL/TLS Configuration How-To contains:
  9. Stefan

    Answered Transaction Isolation Level not working

    -rereadnolock Which will not really help in this case, sorry.
  10. Stefan

    Data entry on no surname/last name

    So you have no distinction between Abraham Abraham and Abraham? Or Dong Dong and Dong? Or closer to your neck of the woods, Grace Grace and Grace? See more examples on Wikipedia.
  11. Stefan

    Answered Creating Thumbnail for Word-document using 'EnhMetaFileBits'

    def var mp as memptr no-undo. mp = chDocument:Range():EnhMetaFileBits. copy-lob from mp to file 'c:\temp\preview.emf'. Will create a file that can be opened by Windows, but it cannot be used on a Progress image widget since that does not support emf files and will throw error 2290. You may...
  12. Stefan

    Question Run non-existant program in a existing program without error

    Did you add a retry block too? Otherwise the AVM will not retry and just leave the block. _main: do on stop undo, retry: if retry then do: message 'retry?' view-as alert-box buttons yes-no update lretry as logical. if not lretry then leave _main. end...
  13. Stefan

    Question Run non-existant program in a existing program without error

    Add a do on stop undo, retry block to your main .p.
  14. Stefan

    Question Query Performance Part 2

    Have you added QryInfo logging as per Progress Customer Community ?
  15. Stefan

    Dataset Relation Position possible?

    Maybe Generating XML file with parent fields between child tables using DEFINE DATASET helps?
  16. Stefan

    Dataset Relation Position possible?

    See Progress Documentation - parent-fields-before and parent-fields-after.
  17. Stefan

    Prg DB Viewer & Data Digger

    The PoC looks very nice! A small UI issue with the 'Lab' tab when using Firefox (not a problem with Chrome), the record lock field overlaps the caption of the where expression.:
  18. Stefan

    REST and WEB Transport

    We have exactly one web handler, listening on /web/rest, that handles the REST API for all our entities including documentation. https://partners.exactfinancials.nl:8443/web/rest
  19. Stefan

    word index in temp-table

    Not when using cpinternal and cpstream set to utf-8. What codepages are you using?
  20. Stefan

    Progress 12.2 Databases in Explorer

    I would first look at getting your AdminServer online. OpenEdge Explorer often thinks my AdminServer is offline due to a "bad" shutdown. To fix: click on configure remote AdminServers, select the row with your AdminServer by clicking somewhere in the row but not on a hyperlink click on Edit...
Back
Top