Search results

  1. P

    display days of week ???

    try this and dispaly according to your need! DEFINE VARIABLE v-i AS INTEGER. DEFINE VARIABLE cWeekDays AS CHARACTER EXTENT 7 NO-UNDO INIT [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]. REPEAT v-i = 1 TO 7: DISP cWeekDays[v-i] (DAY(TODAY) -...
  2. P

    Compare Blob data type!

    Hi, I've done it using buffer-compare. Adding the code snippet. define temp-table tt1 no-undo field f1 as character field bfield as blob. define temp-table tt2 no-undo field f2 as character field bfield as blob. define variable s1 as character no-undo init "0123456789". define variable...
  3. P

    Compare Blob data type!

    Hi Abl, Could you please help me with some syntax or eaxmple? Thanks, Praneesh
  4. P

    Compare Blob data type!

    Hi, I am sorry. No problem in the code which you are suggested. But my problem is some thing like this, Image size is 692 KB (708,608 bytes). So my repeat loop will execute 708,608 times, if no difference found. The system we are working is littile slow and this code takes 4-6 minutes to...
  5. P

    Compare Blob data type!

    Hi bulklodd, Thanks. I've done somthing like this using get-string(memptr,i). But it was taking long time to execute because my image size may varry from 1 kb to 1000kb. I am afraid that the code you are mentioned is something like this. So please suggest me any other way without checking each...
  6. P

    Compare Blob data type!

    Hi There, Please help me!! I need to compare two objects which are blob data type. eg: defined two temp-tables such as define temp-table tt-table1 no-undo field tt-bfield1 as blob. define temp-table tt-table2 no-undo field tt-bfield2 as blob. copied some images to these two...
  7. P

    Size of the Window reducing after Compiling

    Hi, I am using Open Edge 10.1A. Size(Width and Length) of the Application (All the objects accordingly) developed here is reducing after compiling the procedure. Anyone sugest why and how to rectify the same? Thanks In advance, Praneesh
  8. P

    Load Testing Progress application

    Try This... http://sourceforge.net/projects/prounit/ I'v not done any testing in Load Testing other than Manual(Many Users Simultaneously) testing...
  9. P

    How to write CASE-Statement in Progress-4GL?

    Try dis out!!! DEFINE VARIABLE i AS INTEGER NO-UNDO INIT -1. CASE i < 0: WHEN TRUE THEN MESSAGE "<1". OTHERWISE CASE i = 0: WHEN TRUE THEN MESSAGE "0". OTHERWISE MESSAGE ">1". END CASE. END CASE.
Top