Search results

  1. R

    Webspeed on Linux Help!

    Tony, Yes, we got it fixed but it was a webspeed configuration issue. I'm not 100% sure what fixed it because I did not work on it. Our system has the database on the same server as webspeed so it would not be a firewall issue. Thanks for the reply though... Rick
  2. R

    Dynamic html table creation in webspeed

    Since I've been finding some great code tips here, I thought I pass on one that I whipped up this morning. Hopefully it will be useful to someone. 1. First create a temp table (with field labels) and populate with data. I don't think I need to show that part. 2. Here's the code to dynamically...
  3. R

    Webspeed on Linux Help!

    Tony, Have you made any progress on this. We have the same problem... Thanks, Rick
  4. R

    set environment variable

    Thanks Tom, I ended up using the putenv() function in PHP. Worked like a champ. I just thought it would be nice to do it directly in the .p code. Rick
  5. R

    set environment variable

    Is there a way to temporarily set and environment variable? Basically the opposite of OS-GETENV Thanks, Rick
  6. R

    Output row as csv to stdout

    Thanks Lord Icon, It would be awsome if you could show me an example. Also, I'm not sure what you mean by VDU as I am still a newbie at this... Rick
  7. R

    Output row as csv to stdout

    Just a note to let you know what we wound up with. Here's the php5 execution code: <?php try{ $pscript = null; $paramlist = null; $base = dirname(__FILE__); $scriptDir = "$base/progress/"; chdir($scriptDir); if(!empty($_GET['script'])){ $pscript =...
  8. R

    Output row as csv to stdout

    Thanks Tom, What I'm trying to do is eliminate the files all together. I'm assuming that what "display" is doing is writing the output to the default stream or stdout because when the above code is executed, I get the output like this: Building Unit Resident t-date -------- ---- --------...
  9. R

    Output row as csv to stdout

    Casper, Instead of outputting the raw data using "display tt.", What I would really like to do is something like: display EXPORT DELIMITER "|" tt I know that's not right but it's the jest of what I am trying to do. I'm calling the .p file using mbpro and want the output of that to be...
  10. R

    Output row as csv to stdout

    Casper, Thanks for the reply. Ince you have: Output stream sOut to /path/to/where/you/want/name.csv. , won't that still output to a csv file instead of stdout? Rick
  11. R

    Output row as csv to stdout

    Hi all, I'm a newbie at 4GL and Progress and I have what is probably a very simple question to most of you. I would like to format a row of data to csv using the EXPORT function but still have it output to stdout. My understanding of EXPORT is that it creates a .csv file and we are trying to...
Top