Search results

  1. D

    Wrapper for QAD Sales Order Maintenance

    I don't have the QAD source code. I'm looking at some legacy code where they have code like this: if focus:frame-name = "c" and focus:name = "line" then do: assign sodline = int(focus:screen-value) check-mgn = yes no-error. end. I...
  2. D

    Wrapper for QAD Sales Order Maintenance

    I'm a novice Progress user (but I know .NET, COBOL, etc). I've been looking at some source code (legacy) and I've gleaned some knowledge. What I want to do is when a new record is inserted is initialize some fields. What is the syntax of the trigger? I guessed "ON insert so_mstr DO:" but...
  3. D

    .Net UI - Alert box

    EDIT: No need for that attitude
  4. D

    temp table as a parameter

    I think a table is very similiar to a container object. After all the SQL tables are 'passed around' all the other programs!
  5. D

    temp table as a parameter

    Well maybe you could shed some light for me. I'm well versed in programming, but new to Open Edge. I am updating QAD custom programs. These are "standalone" in that they execute off a menu, and go away. I couldn't find anyway of making dynamic arrays or data structures, so I thought a table...
  6. D

    temp table as a parameter

    So the the include file looks like: Printer_Tbl.i DEFINE TEMP-TABLE tPrinter_info FIELD fieldname as CHAR FIELD userDescription as CHAR FIELD deviceAddress as CHAR. -------------------------------- Main Program: {Printer_Tbl.i} RUN Get_Printer_List (OUTPUT tPrinter_Info) -- - -...
  7. D

    temp table as a parameter

    I need a little more clarification Main Program: DEFINE TEMP-TABLE tPrinter_info <---- are you saying I should say "DEFINE INPUT-OUTPUT PARAMETER TABLE FOR ...." here? FIELD fieldname as CHAR FIELD userDescription as CHAR FIELD...
  8. D

    .Net UI - Alert box

    I'm fairly new to QAD and Progress. We have some custom programs that we are converting from eb2 to .NetUI. I picked up the Progress syntax OK, and discovered PXMSG.I - but I haven't found a way to make an Alert-Box that is modal and has an OK button. Am I missing something?
  9. D

    temp table as a parameter

    I'm a seasoned programmer, but new to Open Edge. How does one pass a temp table to a procedure? I'm passing in an empty table, and the procedure will return a populated table.
  10. D

    Need Some Advice - Just Starting To Use ABL with UNIX

    We're converting some custom QAD code that is using the NETUI interface. To my dismay - I found out that you can't use a simple alert-box in the NETUI world. From reading the ABL pdf's - it looks like ABL can do GUI - but not in NETUI? Is there any documention for screen design /user...
Back
Top