Search results

  1. F

    writing environment vars

    Hi, in a post below I asked how to read an environment var, now I need to write to one. I'm building a VBS/VBA app that calls a predefined progress program. I feed it parameters using environment vars like "fromdate" "todate" "outputfile" but now I need progress to signal back to windows that...
  2. F

    reading environment vars

    It does, Osborne. Thank you, and thanks to Casper.
  3. F

    reading environment vars

    Thx for replying However, my passed parameter is taken literally,ie not the value but the name of the parameter is used . this is the VBS part : ... output2csv="c:\temp\myfile" wscript.environment.item("output2csv")=output2csv .... this is the receiving end in 4GL : SESSION:date-format =...
  4. F

    reading environment vars

    Hello, I'm writing a vbs script that runs a predefined progress programme that I would like to pass parameters to, like the 'output to csv' filename. It is very easy to define envir vars in VBS, but how easy is it to read them in progress ? regards Ward
Top