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

    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...
  3. M

    Urgent

    Need a program in progress 4gl which can push the files from a particular folder to the printer.
  4. 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)
  5. 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...
  6. M

    Error :Invalid browse query defination

    ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ Sort Name: ÚÄÄÄÄÄÄÄÄÄÄÄCustomers - Sort NameÄÄÄÄÄÄÄÄÄÄÄÄ¿utput: ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄij Sort Name [V] ³ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ ³...
  7. 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 =...
  8. 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...
  9. 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