Search results

  1. A

    Delete persistent procedure

    Hello, Do we have a trigger in Progress to catch closure of procedure (OE 10.1C)? We have iLib.i library and use it in 1** programs, this source has some functions, but somebody wrote it with bad behavior, each time when you invoke any function from this include file it: 1. run calc.p...
  2. A

    Query/dataset and OFF-END

    I found solution myself, just need to use APPEND and change little bit of logic in the second program.
  3. A

    Query/dataset and OFF-END

    Hello, I have two procedures, the first has definition of temp-table, dataset, query for that temp-table and browse, the second has definition of the same temp-table, the same dataset. First procedure shows result in browse, second gets records from database to dataset and returns filled dataset...
  4. A

    Read-only browse

    Hello, I try to change READ-ONLY status of BROWSE online. I define browse: DEFINE BROWSE BProperty QUERY QProperty DISPLAY ttblObjects_prp.PropertyID FORMAT ">>9" ttblObjects_prp.PropertyName FORMAT "x(25)" ttblObjects_prp_val.PropertyValue FORMAT "x(8)" ENABLE...
  5. A

    How get dialog elements?

    Thank you Cringer! I have sorted it out myself, that's what I have got: wrk = CURENT-WINDOW:HANDLE. wrk = wrk:FIRST-CHILD. DO WHILE VALID-HANDLE(wrk): dc = wrk:CURRENT-ITERATION. dc = dc:FIRST-CHILD. DO WHILE VALID-HANDLE(dc): DISP wrk:NAME dc:NAME. /*EXAMPLE*/...
  6. A

    How get dialog elements?

    Could you write an example, please? :blush1:
  7. A

    How get dialog elements?

    Hello, could you help me please? How can I get all the elements of a window (frames and their contents), and how then I can get access to them, if I want, for example, to get/set size and position?
Back
Top