Search results

  1. D

    OUTPUT STERAM WITH UNIQUE FILE NAME

    Try OUTPUT STREAM HT TO value(cFileName). and look for a file called cFileName. In your case, progress has created a file called cFileName in its root
  2. D

    How to determine if a procedure was passed a file to standard input when run via the command line

    This is how new processes are created in the processing queue, and the initial parameters of the work are often transferred in files. This was long before me, and I understand that it would be much more convenient to send parameters via -param, but it's done as it's done. I just want to protect...
  3. D

    How to determine if a procedure was passed a file to standard input when run via the command line

    Hello. By running the procedure through the command line, pointing it to the input file like this _progres -b -p test.p < test.txt I can read the contents of test.txt into test.p with a simple def var cline as c no-undo. _tt: do while true on endkey undo _tt,leave _tt: import unformatted...
  4. D

    cursor-offset on leave of fill-in

    on leave doesn't work in the console, at least with this syntax, but it works fine in prowin. def var c as c no-undo init '1234567890' FORMAT 'x(20)' . DEF VAR d AS c NO-UNDO INIT '1234567890' FORMAT 'x(20)' . def button bok auto-go. def frame f skip(1) c SKIP(1) d skip(1) bok with view-as...
  5. D

    cursor-offset on leave of fill-in

    Oh, my bad. I have a string of comma separated items that the user fills in manually. Elements have a certain structure, and the chk_store method checks each element for correctness of filling and returns the position of the beginning of the first incorrectly filled element. I want that at the...
  6. D

    cursor-offset on leave of fill-in

    Hello. I have problem setting cursor-offset in on leave event of tty. Need help. openedge 12.2 win64 tty ON LEAVE OF cfrm-store IN FRAME fmnu DO: DO ON ERROR UNDO, RETURN NO-APPLY: ASSIGN cfrm-store. icfs = chk_store(cfrm-store). IF icfs = 0 THEN LEAVE...
  7. D

    Question Paged outputs "next-page" event

    Hi. oe 12.2 windows/unix. I have inherited the unified reporting procedure in paged output which uses a frame header as the page header. The same header contains table headers that no longer fit in the allotted 320 characters. is there any way to distinguish that output has moved to a new page...
Top