Search results

  1. F

    ODBC:Need to sort, but can't use ORDER BY because of Progress bug - How to use index?

    Re: ODBC:Need to sort, but can't use ORDER BY because of Progress bug - How to use in Just a note on this bug . Only the server needs to be updated to 10.1C to fix this . The 10.1B workstation will work fine and the bug is located server side.
  2. F

    OE Management Problem

    I don't know if many people use this product and had good experience with it? I installed it on a AIX system and tried to connect 3 other system to it . Everything got setup properly and all "fmconfig -host <host> -enable" on all 3 other system completed succesfully. Admin Server got...
  3. F

    Please help with buffers for temp table

    I think he wanted to have two distinct buffers to keep pointers on both records at the same time. Probably modification in one affects the second one. I believe that this was more about learning how buffers work then how to create two records in the database.
  4. F

    Please help with buffers for temp table

    Your are creating 2 new buffer for your temp-table then overwritting them with the handle of the default buffer handle of your temp-table. So both your handle point to the same BUFFER . This code will do what you are trying to accomplish DEFINE TEMP-TABLE ttVendorOrig LIKE vendor FIELD...
  5. F

    Difference between progress9.1d and progress9.1e

    One of the major change is the Unicode ActiveX change. .WRX created by version 9.1E did not work on progress 9.1D or lower. There are also a few bug fix since 9.1D is probably the version with the most service pack released.
  6. F

    {&soivrp10-p-tag38}

    It called a preprocessor. The compiler replace that string with it defined value. It either defined by this command &GLOBAL-DEFINE SOIVRP10-P-TAG38 <value> or by &SCOPED-DEFINE SOIVRP10-P-TAG38 <value> You can also learn it value with this command: MESSAGE "{&SOIVRP10-P-TAG38}" VIEW-AS...
  7. F

    Show an XML on Internet Explorer

    hDoc:SAVE("Stream","WebStream"). Don't forget to set your header to XML.
  8. F

    How to find number of free appserver agents?

    You could create 2 different broker with one broker dedicated to the App and one broker with 1 or 2 agent dedicated to reporting. You can be sure that one will not prevent the other.
  9. F

    SQL Update - Please Help - Urgent

    Have you tried: update PUB.JobHead, PUB.Part set PUB.JobHead.ProdCode = PUB.Part.ProdCode where PUB.JobHead.PartNum = PUB.Part.PartNum and PUB.JobHead.ProdCode <> PUB.Part.ProdCode
  10. F

    Calling IExplore.exe from Progress Program

    Then run the same command with WinExec.
  11. F

    R-Code question

    Thanks Casper, I upgraded the server to 10.1C and everything works fine now .
  12. F

    Calling IExplore.exe from Progress Program

    You can always let the OS decide wich application to use to open the html file. example OS-COMMAND VALUE("start mypage.html"). It will use the default web browser to open your html file.
  13. F

    R-Code question

    A simple question... Will R-Code compiled in 10.1C work with a 10.1B Client? I need to upgrade a DB Server for a stupid ODBC bug but i was wondering if we need to do all the stations. Thanks
  14. F

    How to use multi-dimensional array in progress

    You got an error in your code: function get_mdArray returns decimal ( input x as integer, input y as integer, input z as integer ): find mdArray no-lock where mdArray.x = x and mdArray.y = y and mdArray.z = x no-error. return ( if available mdArray then mdArray.payload else ? ). end...
  15. F

    How to download a file using Webspeed

    Your looking at the wrong spot . Casper suggestion about streaming the file as a binary stream was the perfect solution for your problem . You open the file , output the right header , and stream the binary data to the user . The only part missing in his example is the right header type but...
  16. F

    how to run a program on a particular time of interval in running application?

    From the cryptic message i seem to decipher that he wants this to run within a application without multiple login. I *think* this means he wants to use a Timer and fire a program at different time interval. This would mean that PSTimer is what you need to use. BUT be very careful because...
  17. F

    How to download a file using Webspeed

    Your not linking to your file properly. You cannot put it in the Webspeed working directory and link to it like it was a webspeed program. Your server is trying to run your file like it was a webspeed page. You have to put your file in the www root directory or a directory under that. Then...
  18. F

    New Here - Answer me!

    I live and work in Canada but you will not find much opportunity here. The only thing we hear about are downsizing and lost jobs. With the economic downturn, it hard to find company hiring , it even harder finding companies that are hiring abroad. You will need a exceptional skill set to...
  19. F

    Not optimal code

    Changing this FOR EACH wo_mstr NO-LOCK WHERE wo_due_date >= data_u AND wo_rel_date >= data_u AND wo_rel_DATE <= data_u1 AND wo_cc >= buyer1 AND wo_cc <= buyer2 AND wo_part >= part1 AND wo_part <= part2...
  20. F

    Attribute GET-CGI-VALUE for the PSEUDO-WIDGET has an invalid value of . (4058)

    There is no real solution that exists in Version 9. There is no datatype in version 9 that can receive a string longer then 32k. Even if you broke down WebValue into different fields that didn't go over 30k , it wouldn't work because GET-CGI-VALUE receives all the fields that are submitted...
Back
Top