Search results

  1. J

    Applying OCX Events through Progress 4GL

    Is there a way to apply a OCX event through Progress 4GL other than calling the OCX event procedure with parameters? Thanks Joel
  2. J

    Webspeed displayed wrong values

    Cecil, thanks much. This helped me too. Thanks Joel
  3. J

    Bug in Progress?

    saw one entry in the Progress KB with regard to this. Dont know if this helps. ---------------------------------------------------------------------- KB-P45036: Why do ' ' and '' when compared, evaluate to being equal? ----------------------------------------------------------------------...
  4. J

    Bug in Progress?

    looks like Progress treats " " and "" the same. May be internally they apply a TRIM function.
  5. J

    Can we use TAB as a delimiter while exporting?

    Hello Prabhu, use the following output to <file>. for each pt_mster where pt_part = "Item" no-lock: export delimiter '~011' pt_mstr. end. The '~011' does the trick. Let me know if this helped. Courtesy - Progress KB # P22469
  6. J

    Bypass Field Validation for empty field

    You can use the "NO-VALIDATE" in the frame phrase to disregard all validation conditions specified in the Data Dictionary for fields entered in this frame. If your validation in the sub-area-code field fails you could say "subareacode:screen-value = """ and "apply 'entry' to area-code". Let...
  7. J

    Outlook gives "operation failed" error

    Thanks Cringer. The following is the code. define input parameter ic-email-ids AS CHARACTER no-undo. /* format - "abc@abc.com,1;bbc@bbc.com,2;cbc@cnn.com,3" - 1 stands for TO, 2 for CC */ define input parameter ic-subject AS CHARACTER no-undo. define input parameter ic-body AS CHAR no-undo...
  8. J

    Outlook gives "operation failed" error

    Dear All, I am using OUTLOOK 2003 SP3 objects to send an email through Progress. After I send the email and I try to open outlook I get an error message stating "operation failed" and outlook does not open. When I check the task manager - processes, I see outlook.exe in that and when I end...
  9. J

    VPE and OE

    Dear All, We are using VPE and OE. In almost all the reports when the VPE application is displaying the Report, the OE application window is shown iconized in the foreground. I checked the hidden attribute. It is "YES" but still the OE application window is displayed. How would this be...
  10. J

    OE10.B and OE10.C treats "lookup" differently

    Try it in OE 10.1C. The problem is we are migrating from 10.1B to 10.1C. So we don't know in how many places these lookups are used in the code.
  11. J

    OE10.B and OE10.C treats "lookup" differently

    Dear All, LOOKUP( "," , "$,%,>,z,~,,.,9" ) returns 7 in OE10.B and 0 in OE10.C (SP4). Is this a known issue? Are there any workarounds for this in the startup or do I have to change the delimiter to something other than the comma. Please let me know if anyone of you faced the same problem...
  12. J

    Appserver call using classes

    Greg, sorry I am replying late but the 'dynamic call' did not work for output parameters - variables as well as temp-tables. It said that those variables and temp-tables we not in scope to receive the values. Thanks anyway Joel
  13. J

    Appserver and thermometer

    Now that I am running my procedure in appserver as it is pretty fast. But could not figure out a way of showing the process progress thermometer in the client. Should I use a ASYNC call to implement this or there is another way to do it?
  14. J

    Appserver call using classes

    But I want to run this code from the client. Thanks Joel
  15. J

    Appserver call using classes

    Thanks much Greg. Will try this and let you know.
  16. J

    Appserver call using classes

    Hi All, I have defined the following class for calling an appserver. In the method "RunOnAppserver" I may call different external procedures which may have different parameters. How do I generalise this method so as to accomodate the different parameters used for different calls. METHOD public...
  17. J

    Appserver - asbroker1 - agent - server startup parameters

    Could any one please let me know if we can specify a .pf file in the 'server startup parameters' field of asbroker1 / agent properties in the Progress explorer tool for configuring a appserver? Thanks Joel
Back
Top