Search results

  1. M

    Different language disp issue

    I have a called program with hardcoded japanese labels.When i run this program from mfg.pro menu ,the output shows display of labels with junk characters,but if i save this program in the local path ,then i get correct display of japanese labels.what could be the reason?any solution for the same.
  2. M

    Capturing the Label of a field in a trigger

    Thanks a lot.But what if there are multiple frames with different frame names.Actually i want to capture all the pt_mstr labels from Item master maintenence program in a particular temp-table field inside a trigger.The enduser wants to keep a track on which pt_mstr fields were updated.Since he...
  3. M

    Capturing the Label of a field in a trigger

    I want to capture the LABEL of a field in a variable when I fire a trigger while running a program. I have used FOCUS:LABEL. eg: DEF VAR testvar AS CHAR LABEL "CUSTOMER" NO-UNDO. ON LEAVE ANYWHERE DO: testvar = FOCUS:LABEL. END. UPDATE testvar WITH...
  4. M

    Capturing the Label of a field in a trigger

    I want to capture the LABEL of a field in a variable when I fire a trigger while running a program. I have used FOCUS:LABEL. eg: DEF VAR testvar AS CHAR LABEL "CUSTOMER" NO-UNDO. ON LEAVE ANYWHERE DO: testvar = FOCUS:LABEL. END. UPDATE testvar WITH FRAME...
  5. M

    Urgent

    What is pdf2ps ,how to write this script.where can i get all the details regarding this.
  6. M

    Urgent

    The progress version is PROGRESS 10.1C,OS is UNIX AIX(5.1).I need a program or code which on execution pushes the files from a particular folder to any printer.The folder may contain pdf files or any other files.
  7. M

    Urgent

    Need a program in progress 4gl which can push the files from a particular folder to the printer.
  8. M

    Bug

    The version of Unix is AIX 5.3 ,its a customised program ,which opens a browser to input quantity for a particular pt_part.This error comes up sometimes.Another error that comes up is "Error attempting to push run time parameters onto the stack. (984)",but not sure whether it is associated with...
  9. M

    Bug

    PROGRESS 10.1C,OS is UNIX
  10. M

    Bug

    Error while running the program.Need solution for the same? SYSTEM ERROR: gettbl(fd.c) called with bad fdhandle=128. (1414) ** Save file named core for analysis by Progress Software Corporation. (439)
  11. M

    Trapping a record Lock in FOR EACH

    Hi, I have a say, FOR EACH customer where customer.cust = 1. assign customer.name = "test". end. Now in the above code i'm not using any locks.if somehow this code when run in batch process gets locked giving error saying this record is locked by so and so user at this point and gets...
  12. M

    Error :Invalid browse query defination

    ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ Sort Name: ÚÄÄÄÄÄÄÄÄÄÄÄCustomers - Sort NameÄÄÄÄÄÄÄÄÄÄÄÄ¿utput: ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij Sort Name [V] ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ ³...
  13. M

    Frames

    Hi,this is a code define var aa as char init "abc". define var bb as char init "bbb". define var cnt as int. cnt = 0. for each pt_mstr where pt_part > "0006050000" no-lock with frame a: disp pt_part . if cnt = 1 then disp aa colon 1 with no-label. end. i want the o/p in this way when cnt =...
  14. M

    Openedge Training Information

    Our company is slowly migrating to Progress Openedge.Our company is looking for people who can give training in Progress Openedge.Can anyone recommend about any good training institutes or companies that can provide training in openedge.If so do mail me at manu777mathew@yahoo.com. Thanks and...
  15. M

    Suppressing pause within an output to statement

    Hi,Actually I'm trying to run programs using cron,but i'm not sure within the called programs how many pauses are there,since a large number of multiple programs are used ,its hard to track the pauses,so i'm trying to suppress the pauses within all the called program from the main program...
  16. M

    Suppressing pause within an output to statement

    define stream tt. output stream tt to a.csv keep-messages. message "hi". pause. output stream tt close. for the above query is it possible to suppress the pause directly from the output statement without altering the pause within the output statement.Even i want to keep the messages which...
Back
Top