Search results

  1. ezequiel

    Question Label Name in the button

    nborshukov, your .p is not available.
  2. ezequiel

    How to get selected radioset on selection of another radioset

    Just read this, it's good you already solved the problem with the good help I also receive here.
  3. ezequiel

    How to get selected radioset on selection of another radioset

    What about ON VALUE-CHANGED OF RASET1? (Assigning itself) Using RASETn values, not only the SCREEN-VALUEs
  4. ezequiel

    Answered FILE-INFO and wildcards

    I did it based on code from http://stackoverflow.com/questions/1310715/how-to-list-text-files-in-a-directory-in-progress-4gl?rq=1 My version: INPUT STREAM dirlist FROM OS-DIR("U:\out"). REPEAT: IMPORT STREAM dirlist cfilename. IF INDEX(cFILENAME,".PDF") <> 0 THEN...
  5. ezequiel

    Answered FILE-INFO and wildcards

    Hello, I need to know, via Progress 4GL 9.1C, if any PDF exists in a known path. Something like FILE-NAME = "*.PDF". But FILE-NAME / FILE-INFO doesn't accept wildcards Is there a way to accomplish this? Using Windows 8.1 workstation and Windows 2003 file server. Thank you.
  6. ezequiel

    Answered Consecutively run two procedures

    That did it, progdev1, thank you! One of the .w is a smartwindow, it run using PERSISTENT SET. The second .w is a window (it includes a PSTIMER), it runs after the other one like this: RUN wProc1.r ("001","ADMIN"). Thanks everyone for your help!
  7. ezequiel

    Answered Consecutively run two procedures

    Well, I couldn't do it right. I've patched this issue with a series of conditions and just one of the browses display. But it'not the best way.
  8. ezequiel

    Answered Consecutively run two procedures

    Thank you, I tried PERSISTENT and didn't work, but i'll read more tomorrow.
  9. ezequiel

    Answered Consecutively run two procedures

    Hello, I have a code portion like this: RUN wProc1.r ("001","ADMIN"). RUN wProc2.r ("001",YEAR(TODAY)). Both are smartwindows with smartbrowses. I need to have both windows opened, but when I execute this only the first window opens, and the second one appears when I close the first. Is it...
  10. ezequiel

    Comment Finally

    Are you talking about OE 11.5?
  11. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    Status Report. Stefan: Never heard about Swiss Toni, I've just googled it. "-debugalter", that was a typo, sorry. I've just repaired my .hlp problem. "My" pdfextract.p has that correction in one case but there are many others in "old" version. And there is no remark like "/* 11-FEB-2010 jcc...
  12. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    Well, I haven't be succesful with -debugalter because it tries to read the .hlp and in my workstation, for some reason, Microsoft KB917607 doesn't works. So I need to solve this first. I will suggest your suggestion to my boss....
  13. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    About 11.x, well, the assigned Progress partner for my country is not doing a great job in capacitation. And we need it. About -debugalert, I'll give a try today Thank you, Cringer.
  14. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    I forgot to say that we have made a little edition in PDFInclude, as I said in http://www.progresstalk.com/threads/pdfinclude-3-3-3-error-471.134295/ We changed every ".p" callings to ".r" and recompile everything.
  15. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    Hello, yes it's wrong. In our defense I can say we have already bought OE11.x but current system is still working. I'm uploading a zip with our complete pdfinclude directory. The error appears in line 19, when trying to open the tempate PDF file. My guess was it had to do with the font, but I...
  16. ezequiel

    Question PDFInclude 3.3.3 -> Error 560

    Hello, we need to use a PDF form for filling some fields and generating a new pdf. I've created a PDF file ("PruebaForm01.pdf") with one only field ("codcli"), using ArialMT font, size 10. When I run my program, I receive some errors. The first is "Entry 4 is outside the range of list...
  17. ezequiel

    Resolved PDFInclude 3.3.3 -> Error 471

    Thank you, RHD.
  18. ezequiel

    Resolved PDFInclude 3.3.3 -> Error 471

    So I need to read more. I'll try.
  19. ezequiel

    Resolved PDFInclude 3.3.3 -> Error 471

    Great. I changed every ".p" call in PDFInclude to ".r", compiled all its ".p", and it works in the user's computers. Thanks to both of you!
  20. ezequiel

    Resolved PDFInclude 3.3.3 -> Error 471

    Hello, I downloaded PDFInclude 3.3.3 and used it on my programs. Everything was great in my computer but when run on not-developer workstations I get Error 471 "This version of PROGRESS does not allow compiles." I understand the problem is in instructions that require AppBuilder to run. But I...
Back
Top