Recent content by djeanveau

  1. D

    System-dialog Get-file

    Good day! SYSTEM-DIALOG GET-FILE function Can you use this function somehow to select multiple files? If so, how? TX
  2. D

    Yet another Trigger question

    Greetings, I have a simple yes/no question I need answered. If I have a trigger from table A that writes to table B when written to AND then table B is triggered to write to table A when written to, can we experience an infinite loop or is Progress smart enough not to do so? Thanks very...
  3. D

    RowID

    Good day everyone! Is it possible to search a whole database for a specific ROWID without having to identify the table name it's in? :blush:
  4. D

    Carriage Return and Line Feed

    Also tried DO i = 1 TO LENGTH(cROW): IF ASC(SUBSTRING(cROW, i, 1)) = 13 THEN ASSIGN SUBSTRING(cROW, i, 1) = "*". IF ASC(SUBSTRING(cROW, i, 1)) = 10 THEN ASSIGN SUBSTRING(cROW, i, 1) = "*". END. Still not working.
  5. D

    Carriage Return and Line Feed

    Another thing I tried, DO i = 1 TO LENGTH(cROW): IF SUBSTRING(cROW, i, 1) = CHR(13) THEN ASSIGN SUBSTRING(cROW, i, 1) = " ". END.
  6. D

    Carriage Return and Line Feed

    Greetings, Anyone ever try to replace a CR or LF from a variable before? This does not work for me, anyone have an idea? ASSIGN cROW = REPLACE(cROW,CHR(13)," ") /* CR */ cROW = REPLACE(cROW,CHR(10)," "). /* LF */ Regards
  7. D

    Calling Services

    Good day everyone... I was wondering if anyone out there could point me in the right direction? Here is my situation, Progress needs to be able to offer and get a service from other external apps. Don't know if I'm making any sense whatsoever here, like I said, I need directions? The...
  8. D

    Decimal formatting

    I replied to your e-mail, but your e-mail system bounced back my e-mail.
  9. D

    Help with Column-Labels

    Here you go Paul, parts of the code that might help... FORM HEADER "Date: " TODAY "Page: " AT 116 PAGE-NUMBER(serr) FORMAT ">>>9" SKIP "Exception/Error - Update ME FROM ARLU" AT 46 SKIP (2)...
  10. D

    Decimal formatting

    Julie, Please let us know how this turns out. I cannot duplicate your error. What is you code? What version are you using? Denis
  11. D

    Nothing comming out - QUERY-PREPARE

    The solution is to take out the qh:GET-FIRST().
  12. D

    Nothing comming out - QUERY-PREPARE

    Hello everyone, is this OK... qh:QUERY-PREPARE("FOR EACH xdump WHERE dcode = 'CFIA'"). in this... DEF VAR tth AS HANDLE NO-UNDO. DEF VAR bh AS HANDLE NO-UNDO. DEF VAR qh AS HANDLE NO-UNDO. DEF VAR bhdytt AS...
  13. D

    Decimal formatting

    Why do you expect it to display ??????? work arround would be format "->,>>>,>>9.99" Good luck!
  14. D

    DYNAMIC temp-table EXPORT

    Greetings, I am trying to export (dump) a dynamic temp-table to a CSV file. Doing this field by field is very much possible, but what if you what to export the hole table? Here is a piece of my code...again: DEF VAR tth AS HANDLE. DEF VAR bh AS HANDLE. DEF VAR qh...
  15. D

    Buffer-copy - Error 9034

    Please, why am I getting this error in the following simple piece of code ? Pair with fRECID failed to have a member in each table (9034). --------------------------------------------------------------------------------------------- DEF VAR tth AS HANDLE. DEF VAR bh AS...
Top