Search results

  1. P

    LOOKUP() func not working

    1. Youa are assign v-found, but displaying v-fnd. 2. Take lookup into a procedure editor and do some testing this might help narrow the problem.
  2. P

    How to avoid sales order deletion at item line detail level

    We need more detail? Code snippet. An short explanation of what you are trying to accomplish? Alos, Provide progress version.
  3. P

    PDF Include and using an editor widget to replace text

    The person who wrote the code was killed in a motorcylce accident a couple of years back. No one has been maintaining PDFinclude. Also, if you are using PDF verions 8 of greater than you will need to save the files as version 7 or earilier.
  4. P

    -s exceeded. Raising STOP condition

    Do you have the latest patch installed for this 10B release?
  5. P

    search inside the .p .w and .i files possible?

    Download 'textpad'.
  6. P

    truncate log file in Progress V8

    proutil db-name -C truncate bi
  7. P

    Tooltips in Excel

    Does anyone know how to code tooltips for cells in excel using Progress code?
  8. P

    Why do trigger not respond in AMD2 for 'create buttons'

    This code is in the adm2 internal procedure. 'CreateObjects'. All code is in one ADM2 window. However, after looking closer I can not be sure th fill-in would retain there values, since internal procedures are only active during execution. (Smart Objects) Note: All fil-in's and both button's...
  9. P

    Why do trigger not respond in AMD2 for 'create buttons'

    CREATE BUTTON lh-btn-Ok ASSIGN ROW = li-row - 1.1 COLUMN = 70 WIDTH = 15 HEIGHT = 1.1 DEFAULT = TRUE VISIBLE = TRUE LABEL = 'OK' AUTO-GO = TRUE FRAME = FRAME {&FRAME-NAME}:HANDLE SENSITIVE = TRUE TRIGGERS: ON CHOOSE ANYWHERE DO: RUN Update-Turntimes. APPLY "CLOSE" TO THIS-PROCEDURE. end...
  10. P

    No data in browser when using smartobjects with temp-tables

    When working with 9.1d you could create a temp-table and a sdo against the temp-table in tempdb.db. To load data you would have a procedure called 'LoadTT' or some name that would create records into the temp-table. This would be in the sdo. In the sdo on initialize-object 'SetOpenonInit' to...
Top