Search results

  1. P

    Using the Procedure Editor of Progress from within an Application

    Dear Developpers I want to start the procedure editor of progress from within my application using the procedure adecomm/_pwmain.p(..). After starting it, there are two applications running: My own application and the procedure editor containing my code. When closing the procedure editor...
  2. P

    functions and section editor

    Hello everybody I'm working in a company that uses Progress 9.1B. There is always the same problem working with functions. If the functions need more than 64kB size the section editor is not able to open the whole code. Is there a newer version of the section editor in 9.1d or 91.e or is there...
  3. P

    Progress editor

    Hello everybody I'm looking for an editor that understands the syntax of progress and that can be put on a progress window. I don't know if this exists. Can anybody help me? Thanks a lot Pascal
  4. P

    Progress Editor

    Hello everybody I'm looking for an editor that understands the syntax of progress and that can be put on a progress window. I don't know if this exists. Can anybody help me? Thanks a lot Pascal
  5. P

    Get clockcycles

    I want to measure some modules in progress. But Etime() does not fullfill my wishes. Is there a function in progess that gives me the processor cycles? Pascal Suter
  6. P

    using multiselection with smartbrowser

    In the property-sheet of a smart-browser I set the multiselection attribut. But, how can I receive the selected RowID's? Normally (not using smart-objects) I used the attribut 'NUM-SELECTED-ROWS' and the function 'FETCH-SELECTED-ROW' in order to receive the selected RowId's. The...
  7. P

    change cell color in a dynamic browse

    Does anybody know how to change the backgroundcolor of a dynamic browser? In the Trigger "row-display" I tried to assign the bgcolor attribute on a field-handle, but it doesn't exist? Thanks, Pascal
  8. P

    How to create a GUID (global unique identifier)

    Dear programmers Is there a possibility to create a GUID (global unique identifier) using progess language? For example, on a microsoft sql server platform these is done by using NewID(). Pascal
  9. P

    using NEXT-VALUE(..) "dynamically"

    The NEXT-VALUE function needs 2 input Parameters. The first one is the name of the sequence to use and the second must be the logical database name: NEXT-VALUE(Sequence, BasisDB) My problem is, that I have to use NEXT-VALUE dynamically, but neither Sequence nor BasisDB can be put into the...
  10. P

    Only for Specialist? How to build a 4-GL-FIND LAST/FIRST-Statement as a dynamic query

    Example: tabA: Contract# Plan# Generation# Datebegin 4-GL-Statement: FIND FIRST tabA WHERE taba.contract# = 10 AND taba.plan# = 99 AND taba.datebegin = TODAY(). Please, don't return dynamic solutions like: ... whQuery:OpenQuery("FOR EACH tabA WHERE taba.contract# = 10 AND...
  11. P

    changing query on a freeform browser while runtime without temp tables

    Dear progress developpers I've used a freeform browser in addition with a temp temple to be able to change the query while runtime. In the attributes of the browser I've found a QUERY attribute and asked myself if it is possible to assign a dynamic query handle directly to that attribute...
Top