Search results

  1. Marco Mendoza

    Star App

    Today, November 2016, what is the star Progress app? Still Mfgpro(qad)?
  2. Marco Mendoza

    Question How To Pass Params To A Qad's Explore View?

    STD-0298 Use gpbrparm.i to pass parameters to lookups Lookups created via Browse Maintenance often need runtime data to provide the proper filter for the query. Passing data from the Progress program to the lookup is limited because the lookup is not run directly from the Progress program...
  3. Marco Mendoza

    Ict Customization

    You would have better help if share more info like os environment, progress version, gui/char etc. And of course, the code. My guess: use RETURN NO-APPLY if validation fails.
  4. Marco Mendoza

    Openedge Coding/db Standards Document?

    So, the short answer is: no
  5. Marco Mendoza

    Progress Version 9.1d

    Mike, For our mates is easy to say "upgrade"!!! I will say it too, UPGRADE! there you go. But I think I understand your situation, it's usual developers don't have vote and minimal voice when is necessary to invest $$$$ on upgrades. But your company is on V9, you must convice your managers...
  6. Marco Mendoza

    Question Unable To Scroll Frame Up

    You need to use BROWSE. It can be static or dynamic. Here a dynamix example Progress KB - Sample Code to Create Dynamic Browser
  7. Marco Mendoza

    Question Program Optimizing

    Shame on you! :p
  8. Marco Mendoza

    Question Program Optimizing

    I would add to Tom's comments, always use NO-LOCK or EXCLUSIVE-LOCK. Always define as NO-UNDO your vars def (like 99.99% of times). You don't mention your progress version and env, but usually is better to use FOR FIELDS() instead FIND.
  9. Marco Mendoza

    Accessing Data On Progress Tables

    The data dictionary is not for see the data. You can do a FOR EACH thetable: DISPLAY thetable. END. Or use DataDigger
  10. Marco Mendoza

    Importing .d Created From Data Dictionary

    def temp-table latabla like yourtable. input from yourtablefile.d. repeat transaction: create latabla. import latabla. end. input close. Important: Don't use NO-UNDO on the temp-table definition, and use the TRANSACTION on the repeat, or you will get an extra empty record.
  11. Marco Mendoza

    Question Regarding Pre-processor

    Copied from "STD-0240" Localization tags:
  12. Marco Mendoza

    Error Understanding Cim Process In Progress - Qad Mfg/pro

    CIMs (batchload) does not work with Browsers. Mfgpro programs use the var "batchrun" to change the flow of the program and work with and without batch load. IF batchrun THEN DO: SET var1 var2 ... . END. ELSE DO: ... your code with browser ... END.
  13. Marco Mendoza

    Question Using Browse

    second off-topic: Feminist: why not 1=Female 2=Male? :D sorry ;)
  14. Marco Mendoza

    Question Using Browse

    off-topic: Are you using sex field as integer in case #3 is accepted? :D
  15. Marco Mendoza

    Help Required To Write A Generic Trigger Program

    And remember, If you are doing buffer-compare inside a write trigger, the result always will be FALSE , is'nt?
  16. Marco Mendoza

    Answered Scheme Changes & Recompilation

    I have 10.1c and we don't need to recompile if table, field or index is added. We have clear if we add an index we need to recompile for the new index can be choosed, but if we not recompile the programs keep working.
  17. Marco Mendoza

    Question I Need Readprobe.p Program

    ... from old peg ...
  18. Marco Mendoza

    Please Help Urgent

    Progress KB - Home Search for **stget : out of storage. (1450).
  19. Marco Mendoza

    Question Help Whit A New Database

    Complicated task for a newbie. Here you can find installation docs DocumentLibrary
  20. Marco Mendoza

    How To Get The Mortgage Rate From The Banks?

    Maybe webservices? We have updated the exchange currency from our national bank http://www.banxico.org.mx/DgieWSWeb/DgieWS?WSDL
Back
Top